Skip to content

Commit 83c1ced

Browse files
committed
Merge pull request #24 from steazzalini/fix-array-decl-style
Use classic array declaration instead of the short one
2 parents a70630a + 65cd2e1 commit 83c1ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Payum/PayumModule/Registry/RegistryFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function createService(ServiceLocatorInterface $serviceLocator)
1919
$registry = new ServiceLocatorAwareRegistry(
2020
$options->getGateways(),
2121
$options->getStorages(),
22-
[]
22+
array()
2323
);
2424

2525
//TODO: quick fix. we should avoid early init of services. has to be reworked to be lazy

0 commit comments

Comments
 (0)