@@ -69,7 +69,7 @@ public function __construct(
69
69
/**
70
70
* {@inheritdoc}
71
71
*/
72
- protected function configure ()
72
+ public function configure ()
73
73
{
74
74
$ this ->setName ('catalog:images:resize ' )
75
75
->setDescription ('Creates resized product images ' )
@@ -79,7 +79,7 @@ protected function configure()
79
79
/**
80
80
* {@inheritdoc}
81
81
*/
82
- protected function execute (
82
+ public function execute (
83
83
\Symfony \Component \Console \Input \InputInterface $ input ,
84
84
\Symfony \Component \Console \Output \OutputInterface $ output
85
85
) {
@@ -139,7 +139,7 @@ protected function execute(
139
139
* @param array $options
140
140
* @return int
141
141
*/
142
- protected function getProcessesAmount (array $ options )
142
+ public function getProcessesAmount (array $ options )
143
143
{
144
144
return isset ($ options [Options::JOBS_AMOUNT ])
145
145
? (int )$ options [Options::JOBS_AMOUNT ]
@@ -150,7 +150,7 @@ protected function getProcessesAmount(array $options)
150
150
* @param array $options
151
151
* @return int
152
152
*/
153
- protected function getLimit (array $ options )
153
+ public function getLimit (array $ options )
154
154
{
155
155
return isset ($ options [Options::PRODUCT_LIMIT ])
156
156
? (int )$ options [Options::PRODUCT_LIMIT ]
@@ -161,7 +161,7 @@ protected function getLimit(array $options)
161
161
* @param array $options
162
162
* @return int
163
163
*/
164
- protected function getOffset (array $ options )
164
+ public function getOffset (array $ options )
165
165
{
166
166
return isset ($ options [Options::PRODUCT_OFFSET ])
167
167
? (int )$ options [Options::PRODUCT_OFFSET ]
0 commit comments