Skip to content

Commit a75370f

Browse files
authored
Set some methods to protected to allow overrides (#32)
1 parent b54e87a commit a75370f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/FileFetcher.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class FileFetcher extends AbstractPersistentJob
1818
{
1919

20-
private array $customProcessorClasses = [];
20+
protected array $customProcessorClasses = [];
2121

2222
/**
2323
* Constructor.
@@ -71,7 +71,7 @@ protected function runIt()
7171
return $info['result'];
7272
}
7373

74-
private function getProcessors()
74+
protected function getProcessors(): array
7575
{
7676
$processors = self::getDefaultProcessors();
7777
foreach ($this->customProcessorClasses as $processorClass) {
@@ -90,7 +90,7 @@ private static function getDefaultProcessors()
9090
return $processors;
9191
}
9292

93-
private function getProcessor(): ProcessorInterface
93+
protected function getProcessor(): ProcessorInterface
9494
{
9595
return $this->getProcessors()[$this->getStateProperty('processor')];
9696
}
@@ -109,7 +109,7 @@ private function validateConfig($config): array
109109
return $config;
110110
}
111111

112-
private function setProcessors($config)
112+
protected function setProcessors($config)
113113
{
114114
if (!isset($config['processors'])) {
115115
return;

0 commit comments

Comments
 (0)