it was created the More namespace and append its patterns

This commit is contained in:
Antonio Spinelli
2014-04-16 18:12:52 -03:00
parent fc3b6a1608
commit c1ca6b42e2
12 changed files with 114 additions and 111 deletions

View File

@@ -1,8 +1,8 @@
<?php
namespace DesignPatterns\ServiceLocator;
namespace DesignPatterns\More\ServiceLocator;
interface ServiceLocatorInterface
interface ServiceLocatorInterface
{
/**
* Checks if a service is registered.
@@ -21,4 +21,4 @@ interface ServiceLocatorInterface
* @return mixed
*/
public function get($interface);
}
}