File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
class FileFetcher extends AbstractPersistentJob
18
18
{
19
19
20
- private array $ customProcessorClasses = [];
20
+ protected array $ customProcessorClasses = [];
21
21
22
22
/**
23
23
* Constructor.
@@ -71,7 +71,7 @@ protected function runIt()
71
71
return $ info ['result ' ];
72
72
}
73
73
74
- private function getProcessors ()
74
+ protected function getProcessors (): array
75
75
{
76
76
$ processors = self ::getDefaultProcessors ();
77
77
foreach ($ this ->customProcessorClasses as $ processorClass ) {
@@ -90,7 +90,7 @@ private static function getDefaultProcessors()
90
90
return $ processors ;
91
91
}
92
92
93
- private function getProcessor (): ProcessorInterface
93
+ protected function getProcessor (): ProcessorInterface
94
94
{
95
95
return $ this ->getProcessors ()[$ this ->getStateProperty ('processor ' )];
96
96
}
@@ -109,7 +109,7 @@ private function validateConfig($config): array
109
109
return $ config ;
110
110
}
111
111
112
- private function setProcessors ($ config )
112
+ protected function setProcessors ($ config )
113
113
{
114
114
if (!isset ($ config ['processors ' ])) {
115
115
return ;
You can’t perform that action at this time.
0 commit comments