Completed
Branch testing (88fcdf)
by Roman
07:43
created
src/Eloquent/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      */
107 107
     protected function addUpdatedAtColumn(array $values)
108 108
     {
109
-        if (! $this->model->usesTimestamps() ||
109
+        if (!$this->model->usesTimestamps() ||
110 110
             is_null($this->model->getUpdatedAtColumn())) {
111 111
             return $values;
112 112
         }
Please login to merge, or discard this patch.
src/Eloquent/Model.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -119,13 +119,13 @@
 block discarded – undo
119 119
         return $column;
120 120
     }
121 121
 
122
-     /**
123
-     * Set a given attribute on the model.
124
-     *
125
-     * @param  string  $key
126
-     * @param  mixed  $value
127
-     * @return $this
128
-     */
122
+        /**
123
+         * Set a given attribute on the model.
124
+         *
125
+         * @param  string  $key
126
+         * @param  mixed  $value
127
+         * @return $this
128
+         */
129 129
     public function setAttribute($key, $value)
130 130
     {
131 131
         // First we will check for the presence of a mutator for the set operation
Please login to merge, or discard this patch.