Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/code-cleanup' of https://github.com/Maks3w/zf2 i…
Browse files Browse the repository at this point in the history
…nto hotfix/uses-annotations
  • Loading branch information
weierophinney committed May 10, 2012
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/AbstractFactoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ interface AbstractFactoryInterface
{
public function canCreateServiceWithName($name /*, $requestedName */);
public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name /*, $requestedName */);
}
}
2 changes: 1 addition & 1 deletion src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ public function configureServiceManager(ServiceManager $serviceManager)
}
}

}
}
2 changes: 1 addition & 1 deletion src/ConfigurationInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
interface ConfigurationInterface
{
public function configureServiceManager(ServiceManager $serviceManager);
}
}
2 changes: 1 addition & 1 deletion src/Di/DiInstanceManagerProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ public function getSharedInstance($classOrAlias)
return $this->diInstanceManager->getSharedInstance($classOrAlias);
}
}
}
}
2 changes: 1 addition & 1 deletion src/FactoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
interface FactoryInterface
{
public function createService(ServiceLocatorInterface $serviceLocator);
}
}
2 changes: 1 addition & 1 deletion src/InitializerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
interface InitializerInterface
{
public function initialize($instance);
}
}
2 changes: 1 addition & 1 deletion src/ServiceLocatorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ interface ServiceLocatorInterface
{
public function get($name);
public function has($name);
}
}
2 changes: 1 addition & 1 deletion src/ServiceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -505,4 +505,4 @@ protected function createServiceViaCallback($callable, $cName, $rName)
return $instance;
}

}
}
2 changes: 1 addition & 1 deletion test/TestAsset/Foo.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
class Foo
{

}
}

0 comments on commit 3962f1e

Please sign in to comment.