diff options
author | LEZY Thomas <thomas.gif.91@gmail.com> | 2014-05-29 16:59:41 +0200 |
---|---|---|
committer | LEZY Thomas <thomas.gif.91@gmail.com> | 2014-05-29 16:59:41 +0200 |
commit | c17a1e92c5d63beb0f7f602a061c33a9eb093639 (patch) | |
tree | 5b2d3e1b7de5386356269e3f2a3b0f91e17a0d08 /phpBB | |
parent | e7fd259766ff78edf98ee08fff83cb70ac46b6f7 (diff) | |
download | forums-c17a1e92c5d63beb0f7f602a061c33a9eb093639.tar forums-c17a1e92c5d63beb0f7f602a061c33a9eb093639.tar.gz forums-c17a1e92c5d63beb0f7f602a061c33a9eb093639.tar.bz2 forums-c17a1e92c5d63beb0f7f602a061c33a9eb093639.tar.xz forums-c17a1e92c5d63beb0f7f602a061c33a9eb093639.zip |
[ticket/12597] Fix visibilty of two functions in run.php
PHPBB3-12597
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/console/command/cron/run.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/console/command/cron/run.php b/phpBB/phpbb/console/command/cron/run.php index 14cda84e7f..0da4d7c86d 100644 --- a/phpBB/phpbb/console/command/cron/run.php +++ b/phpBB/phpbb/console/command/cron/run.php @@ -111,7 +111,7 @@ class run extends \phpbb\console\command\command * @param OutputInterface $output The output stream, used for printing verbose-mode and error information. * @return null */ - private function run_all(InputInterface $input, OutputInterface $output) + protected function run_all(InputInterface $input, OutputInterface $output) { $run_tasks = $this->cron_manager->find_all_ready_tasks(); @@ -147,7 +147,7 @@ class run extends \phpbb\console\command\command * @param OutputInterface $output The output stream, used for printing verbose-mode and error information. * @return int 0 if all is well, 2 if no task matches $task_name. */ - private function run_one(InputInterface $input, OutputInterface $output, $task_name) + protected function run_one(InputInterface $input, OutputInterface $output, $task_name) { $task = $this->cron_manager->find_task($task_name); if ($task) |