Skip to content

Commit

Permalink
Delete composer overhead & some code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mrVrAlex committed Oct 20, 2016
1 parent e7d40b8 commit cd26b05
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"zendframework/zend-servicemanager": "^2.7.6 || ^3.1",
"zendframework/zend-modulemanager": "^2.6",
"zendframework/zend-stdlib": "^2.7 || ^3.0",
"zendframework/zend-hydrator": "^1.1 || ^2.2",
"zendframework/zend-http": "^2.5",
"zendframework/zend-eventmanager": "^2.7 || ^3.0",
"imagine/Imagine": "0.6.*",
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Factory/ImageControllerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ImageControllerFactory implements FactoryInterface
*/
public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
{
if (! method_exists($container, 'configure')) {
if (!method_exists($container, 'configure')) {
$container = $container->getServiceLocator();
}

Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/Factory/ImgUrlFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ImgUrlFactory implements FactoryInterface
*/
public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
{
if (! method_exists($container, 'configure')) {
if (!method_exists($container, 'configure')) {
$container = $container->getServiceLocator();
}

Expand Down

0 comments on commit cd26b05

Please sign in to comment.