Completed
Push — master ( 46b7df...4cf19c )
by Emily
02:25
created
src/Exception/PropertyNotReadableException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     {
11 11
         parent::__construct
12 12
         (
13
-              'Tried to read unreadable property '
13
+                'Tried to read unreadable property '
14 14
             . $class . '::$' . $property,
15 15
             0,
16 16
             $previous
Please login to merge, or discard this patch.
src/Exception/PropertyNotWritableException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     {
11 11
         parent::__construct
12 12
         (
13
-              'Tried to write to unwritable property '
13
+                'Tried to write to unwritable property '
14 14
             . $class . '::$' . $property,
15 15
             0,
16 16
             $previous
Please login to merge, or discard this patch.