aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/phpbb/cron/controller/cron.php2
-rw-r--r--phpBB/phpbb/cron/event/cron_runner_listener.php2
2 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/phpbb/cron/controller/cron.php b/phpBB/phpbb/cron/controller/cron.php
index d71136ee5d..6f0e35e4cd 100644
--- a/phpBB/phpbb/cron/controller/cron.php
+++ b/phpBB/phpbb/cron/controller/cron.php
@@ -23,6 +23,8 @@ class cron
/**
* Handles CRON requests
*
+ * @param string $cron_type
+ *
* @return Response
*/
public function handle($cron_type)
diff --git a/phpBB/phpbb/cron/event/cron_runner_listener.php b/phpBB/phpbb/cron/event/cron_runner_listener.php
index 323ac966ac..9e9ecf0d47 100644
--- a/phpBB/phpbb/cron/event/cron_runner_listener.php
+++ b/phpBB/phpbb/cron/event/cron_runner_listener.php
@@ -56,6 +56,8 @@ class cron_runner_listener implements EventSubscriberInterface
/**
* Runs the cron job after the response was sent
+ *
+ * @param PostResponseEvent $event The event
*/
public function on_kernel_terminate(PostResponseEvent $event)
{