aboutsummaryrefslogtreecommitdiff
path: root/lib/models/CronjobSchedule.class.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+github@gmail.com>2023-05-08 17:08:52 +0200
committerJan-Hendrik Willms <tleilax+github@gmail.com>2023-05-08 17:08:52 +0200
commita1fda2758e9c241ac3eb980ac8716dfedbe9dd3c (patch)
tree2190f0478fb153efdb8ba48ebb574c7691f4f351 /lib/models/CronjobSchedule.class.php
parent244d00ed91ad2b4b83e902a45cd6def3d7bc7e86 (diff)
let phpcsfixer fix errors according to @PSR12 rules on lib/modelsphpcsfixer
Diffstat (limited to 'lib/models/CronjobSchedule.class.php')
-rw-r--r--lib/models/CronjobSchedule.class.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/models/CronjobSchedule.class.php b/lib/models/CronjobSchedule.class.php
index 028eed7..c8167fb 100644
--- a/lib/models/CronjobSchedule.class.php
+++ b/lib/models/CronjobSchedule.class.php
@@ -1,4 +1,5 @@
<?php
+
// +---------------------------------------------------------------------------+
// This file is part of Stud.IP
// CronjobSchedule.class.php
@@ -53,9 +54,9 @@
class CronjobSchedule extends SimpleORMap
{
- const PRIORITY_LOW = 'low';
- const PRIORITY_NORMAL = 'normal';
- const PRIORITY_HIGH = 'high';
+ public const PRIORITY_LOW = 'low';
+ public const PRIORITY_NORMAL = 'normal';
+ public const PRIORITY_HIGH = 'high';
protected static function configure($config = [])
{