Completed
Pull Request — master (#4037)
by Muhlis
02:45
created
src/Form/Field/Divider.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@
 block discarded – undo
35 35
      */
36 36
     public function note()
37 37
     {              
38
-      $this->class='note';
39
-      return $this;
38
+        $this->class='note';
39
+        return $this;
40 40
     }
41 41
 
42 42
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 class Divider extends Field
8 8
 {
9 9
     protected $title;
10
-    protected $class='divider';
10
+    protected $class = 'divider';
11 11
 
12 12
     public function __construct($title = '')
13 13
     {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function note()
37 37
     {              
38
-      $this->class='note';
38
+      $this->class = 'note';
39 39
       return $this;
40 40
     }
41 41
 
Please login to merge, or discard this patch.