Completed
Push — master ( 90f674...5f29f1 )
by Adrian
04:25
created
src/Repository/Eloquent/Repository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
         $this->refresh();
101 101
 
102
-        if (! $result) {
102
+        if (!$result) {
103 103
             throw new RepositoryException("There was an error updating the model");
104 104
         }
105 105
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
      */
221 221
     protected function refresh()
222 222
     {
223
-        if (! $this->model instanceof EloquentModel) {
223
+        if (!$this->model instanceof EloquentModel) {
224 224
             $this->model = $this->model->getModel();
225 225
         }
226 226
 
Please login to merge, or discard this patch.