@@ -41,7 +41,7 @@ |
||
| 41 | 41 | $resume = $this->repository->find($id); |
| 42 | 42 | |
| 43 | 43 | if (!$resume) { |
| 44 | - throw new \Exception('No resume found with id ' . $id); |
|
| 44 | + throw new \Exception('No resume found with id '.$id); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | /* @todo REMOVE THIS |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | * for multiple paths. |
| 16 | 16 | * example https://github.com/doctrine/DoctrineORMModule |
| 17 | 17 | */ |
| 18 | - 'paths' => array( __DIR__ . '/../src/Cv/Entity'), |
|
| 18 | + 'paths' => array(__DIR__.'/../src/Cv/Entity'), |
|
| 19 | 19 | ), |
| 20 | 20 | ), |
| 21 | 21 | 'eventmanager' => array( |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | 'translation_file_patterns' => array( |
| 36 | 36 | array( |
| 37 | 37 | 'type' => 'gettext', |
| 38 | - 'base_dir' => __DIR__ . '/../language', |
|
| 38 | + 'base_dir' => __DIR__.'/../language', |
|
| 39 | 39 | 'pattern' => '%s.mo', |
| 40 | 40 | ), |
| 41 | 41 | ), |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | 'resume-recruiter' => array( |
| 166 | 166 | 'label' => /*@translate*/ 'Talent-Pool', |
| 167 | 167 | 'route' => 'lang/cvs', |
| 168 | - 'active_on' => [ 'lang/cvs/edit', 'lang/cvs/view' ], |
|
| 168 | + 'active_on' => ['lang/cvs/edit', 'lang/cvs/view'], |
|
| 169 | 169 | 'resource' => 'navigation/resume-recruiter', |
| 170 | 170 | 'order' => 10, |
| 171 | 171 | 'pages' => array( |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | |
| 199 | 199 | // Where to look for view templates not mapped above |
| 200 | 200 | 'template_path_stack' => array( |
| 201 | - __DIR__ . '/../view', |
|
| 201 | + __DIR__.'/../view', |
|
| 202 | 202 | ), |
| 203 | 203 | ), |
| 204 | 204 | |