@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | { |
| 15 | 15 | public function getConfig($env = null) |
| 16 | 16 | { |
| 17 | - return include dirname(__DIR__) . '/config/module.config.php'; |
|
| 17 | + return include dirname(__DIR__).'/config/module.config.php'; |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | public function getAutoloaderConfig() |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | return [ |
| 23 | 23 | 'Zend\Loader\StandardAutoloader' => [ |
| 24 | 24 | 'namespaces' => [ |
| 25 | - __NAMESPACE__ => dirname(__DIR__) . '/src/' . __NAMESPACE__, |
|
| 25 | + __NAMESPACE__ => dirname(__DIR__).'/src/'.__NAMESPACE__, |
|
| 26 | 26 | ], |
| 27 | 27 | ], |
| 28 | 28 | ]; |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | public function __construct(Authenticator $authService, SessionManager $sessionManager) |
| 32 | 32 | { |
| 33 | 33 | if (!$authService->getStorage() instanceof Session) { |
| 34 | - throw new RuntimeException(__CLASS__ . ' requires SessionStorage'); |
|
| 34 | + throw new RuntimeException(__CLASS__.' requires SessionStorage'); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | $this->authService = $authService; |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | $authAdapter = $this->authService->getAdapter(); |
| 50 | 50 | |
| 51 | 51 | if (!$authAdapter instanceof ValidatableAdapterInterface) { |
| 52 | - throw new RuntimeException(__CLASS__ . ' requires ValidatableAdapterInterface'); |
|
| 52 | + throw new RuntimeException(__CLASS__.' requires ValidatableAdapterInterface'); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | $authAdapter->setIdentity($identity) |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | |
| 13 | 13 | 'view_manager' => array( |
| 14 | 14 | 'template_path_stack' => array( |
| 15 | - __DIR__ . '/../view', |
|
| 15 | + __DIR__.'/../view', |
|
| 16 | 16 | ), |
| 17 | 17 | ), |
| 18 | 18 | |