Browse Source

phpcs fixes

Nicos Panayides 3 years ago
parent
commit
5f34c8e54d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      tests/test_app/TestApp/Error/Exception/MyPDOStringException.php

+ 4 - 4
tests/test_app/TestApp/Error/Exception/MyPDOStringException.php

@@ -18,10 +18,10 @@ class MyPDOStringException extends PDOException
 
     /**
      * @inheritDoc
-    */
-    public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
+     */
+    public function __construct(string $message = '', int $code = 0, ?Throwable $previous = null)
     {
-       parent::__construct($message, $code, $previous);
-       $this->code = 'DB' . strval($code);
+        parent::__construct($message, $code, $previous);
+        $this->code = 'DB' . strval($code);
     }
 }