Completed
Push — develop ( 725207...6c2664 )
by
unknown
08:34
created
module/Cv/src/Cv/Controller/ViewController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
module/Cv/config/module.config.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.