X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_del%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=blobdiff_plain;f=maintenance%2FfileOpPerfTest.php;h=a04de08932645f4e1fdb2044cb423861616fc096;hb=96fa73b3cf7b697942826e4aeaa2778e74ebcc02;hp=4b6c619414f11850f1e3e2df3d46da1455d233c0;hpb=df5e7c3aa0b508591cc95781872aac8f7a45b974;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/fileOpPerfTest.php b/maintenance/fileOpPerfTest.php index 4b6c619414..a04de08932 100644 --- a/maintenance/fileOpPerfTest.php +++ b/maintenance/fileOpPerfTest.php @@ -29,7 +29,7 @@ require_once __DIR__ . '/Maintenance.php'; * * @ingroup Maintenance */ -class TestFileOpPerformance extends Maintenance { +class FileOpPerfTest extends Maintenance { public function __construct() { parent::__construct(); $this->addDescription( 'Test fileop performance' ); @@ -141,5 +141,5 @@ class TestFileOpPerformance extends Maintenance { } } -$maintClass = "TestFileOpPerformance"; +$maintClass = FileOpPerfTest::class; require_once RUN_MAINTENANCE_IF_MAIN;