X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FnextJobDB.php;h=06ccccbb0fa5a5d35fc2e1247e9b503df9adc2f9;hb=f62e9fb0c3823e51e1c147d42b1b80e695c19132;hp=1be5146eb2ca88bc73debb3e76911cb98fc80a02;hpb=efed0f97b8a4b4e9acceb069fdebf8af08d5f467;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/nextJobDB.php b/maintenance/nextJobDB.php index 1be5146eb2..06ccccbb0f 100644 --- a/maintenance/nextJobDB.php +++ b/maintenance/nextJobDB.php @@ -21,14 +21,14 @@ * @ingroup Maintenance */ -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; /** * Maintenance script that picks a database that has pending jobs. * * @ingroup Maintenance */ -class nextJobDB extends Maintenance { +class NextJobDB extends Maintenance { public function __construct() { parent::__construct(); $this->mDescription = "Pick a database that has pending jobs"; @@ -115,5 +115,5 @@ class nextJobDB extends Maintenance { } } -$maintClass = "nextJobDb"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +$maintClass = "NextJobDb"; +require_once RUN_MAINTENANCE_IF_MAIN;