Specify a blocker for all UserTest blocks
[lhc/web/wiklou.git] / tests / phpunit / includes / jobqueue / JobQueueMemoryTest.php
index 178a6a6..4b03fda 100644 (file)
@@ -14,18 +14,18 @@ class JobQueueMemoryTest extends PHPUnit_Framework_TestCase {
         * @return JobQueueMemory
         */
        private function newJobQueue() {
-               return JobQueue::factory( array(
+               return JobQueue::factory( [
                        'class' => 'JobQueueMemory',
                        'wiki' => wfWikiID(),
                        'type' => 'null',
-               ) );
+               ] );
        }
 
        private function newJobSpecification() {
                return new JobSpecification(
                        'null',
-                       array( 'customParameter' => null ),
-                       array(),
+                       [ 'customParameter' => null ],
+                       [],
                        Title::newFromText( 'Custom title' )
                );
        }