Passed
Push — main ( 72ed59...7b3af7 )
by Sammy
01:55
created
src/Table/Row.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,8 +153,8 @@
 block discarded – undo
153 153
     }
154 154
 
155 155
     /**
156
-      * @return array<string,string> an array of errors, column name => message
157
-      */
156
+     * @return array<string,string> an array of errors, column name => message
157
+     */
158 158
     public function persist(): array
159 159
     {
160 160
         if (!$this->isNew() && !$this->isAltered()) { // existing record with no alterations
Please login to merge, or discard this patch.
src/Grammar/Clause/Join.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
  * LEFT JOIN, two ways
9 9
  * (new Join('cbx_order', 'Orders'))->on('user_id', 'User', 'id')->type('LEFT');
10 10
  * (new Join('cbx_order', 'Orders'))->on('user_id', 'User', 'id')->left();
11
-
12 11
  * INNER JOIN, with helper, before on
13 12
  * (new Join('cbx_order', 'Orders'))->inner()->on('user_id', 'User', 'id');
14 13
  */
Please login to merge, or discard this patch.