Completed
Push — master ( 7bd861...f16e30 )
by Márcio Lucas R.
02:22
created
src/Phiber/ORM/Exceptions/NotImplementedException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function __construct($message)
20 20
     {
21
-        if($message !== null ) {
21
+        if ($message !== null) {
22 22
             $this->message = $message;
23 23
         }
24 24
         $this->message = new Internationalization('not_implemented_exception_default_message');
@@ -27,6 +27,6 @@  discard block
 block discarded – undo
27 27
     public function __toString()
28 28
     {
29 29
         parent::__toString(); // TODO: Change the autogenerated stub
30
-        return `NotImplementedException: ${$this->message}` ;
30
+        return `NotImplementedException: ${$this->message}`;
31 31
     }
32 32
 }
33 33
\ No newline at end of file
Please login to merge, or discard this patch.