mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-26 13:18:54 +00:00
[ticket/12597] Fix visibilty of two functions in run.php
PHPBB3-12597
This commit is contained in:
parent
e7fd259766
commit
c17a1e92c5
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
* @param OutputInterface $output The output stream, used for printing verbose-mode and error information.
|
||||||
* @return null
|
* @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();
|
$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.
|
* @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.
|
* @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);
|
$task = $this->cron_manager->find_task($task_name);
|
||||||
if ($task)
|
if ($task)
|
||||||
|
|
Loading…
Add table
Reference in a new issue