Browse Source

single quote string style

inoas 9 years ago
parent
commit
7bd33ddc3d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Error/ExceptionRenderer.php

+ 2 - 2
src/Error/ExceptionRenderer.php

@@ -186,8 +186,8 @@ class ExceptionRenderer implements ExceptionRendererInterface
                 'format' => 'array',
                 'args' => false
             ]);
-            $viewVars['file'] = $exception->getFile() ?: "null";
-            $viewVars['line'] = $exception->getLine() ?: "null";
+            $viewVars['file'] = $exception->getFile() ?: 'null';
+            $viewVars['line'] = $exception->getLine() ?: 'null';
             $viewVars['_serialize'][] = 'file';
             $viewVars['_serialize'][] = 'line';
         }