Completed
Push — master ( b011b0...d9d0f6 )
by Tõnis
02:28
created
src/models/BaseSurvey.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function rules()
25 25
     {
26 26
         return [
27
-             [['name'], 'string', 'max' => 254],
27
+                [['name'], 'string', 'max' => 254],
28 28
         ];
29 29
     }
30 30
 
Please login to merge, or discard this patch.
src/DActiveRecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public static function primaryKeySingle()
19 19
     {
20 20
         if (count(self::primaryKey()) === 1) {
21
-            return static::tableName() . "_id";
21
+            return static::tableName()."_id";
22 22
         }
23 23
         throw new NotSupportedException('Not supported for multi-column primary keys');
24 24
     }
Please login to merge, or discard this patch.