Passed
Push — master ( 7495f4...63074b )
by Dispositif
02:55
created
src/Domain/Publisher/Traits/MapperConverterTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,10 +28,10 @@  discard block
 block discarded – undo
28 28
         if (isset($meta['citation_firstpage'])) {
29 29
             $page = $meta['citation_firstpage'];
30 30
             if (isset($meta['citation_lastpage'])) {
31
-                $page .= '–' . $meta['citation_lastpage'];
31
+                $page .= '–'.$meta['citation_lastpage'];
32 32
             }
33 33
 
34
-            return (string)$page;
34
+            return (string) $page;
35 35
         }
36 36
 
37 37
         return null;
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         } catch (Exception $e) {
165 165
             // 23/11/2015 00:00:00
166 166
             if (isset($this->log) && method_exists($this->log, 'notice')) {
167
-                $this->log->notice('tryFormatDateOrComment failed with ' . $str);
167
+                $this->log->notice('tryFormatDateOrComment failed with '.$str);
168 168
             }
169 169
 
170 170
             return sprintf('<!-- %s -->', $str);
Please login to merge, or discard this patch.