Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 3bae995

Browse files
committed
fixes short array syntax
1 parent 9a1ce01 commit 3bae995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Service/ControllerManagerFactoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ControllerManagerFactoryTest extends TestCase
3737
public function setUp()
3838
{
3939
$managerFactory = new ControllerManagerFactory();
40-
$config = new ArrayObject(array('di' => []));
40+
$config = new ArrayObject(['di' => []);
4141
$this->services = new ServiceManager();
4242
$this->services->setService('Zend\ServiceManager\ServiceLocatorInterface', $this->services);
4343
$this->services->setFactory('ControllerManager', $managerFactory);

0 commit comments

Comments
 (0)