Passed
Branch 3.x (0b1ace)
by Enjoys
25:07 queued 03:02
created
src/Form.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -232,11 +232,11 @@
 block discarded – undo
232 232
         return $this->name;
233 233
     }
234 234
 
235
-     /**
236
-      * Установка аттрибута формы name
237
-      * @param string|null $name
238
-      * @return \self
239
-      */
235
+        /**
236
+         * Установка аттрибута формы name
237
+         * @param string|null $name
238
+         * @return \self
239
+         */
240 240
     protected function setName(?string $name = null): self
241 241
     {
242 242
         $this->name = $name;
Please login to merge, or discard this patch.
src/Elements/Datalist.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         parent::__construct($name, $title);
52 52
         $this->setAttribute('list', $this->getAttribute('id'));
53
-       $this->removeAttribute('id');
53
+        $this->removeAttribute('id');
54 54
     }
55 55
     
56 56
     public function baseHtml(): ?string
Please login to merge, or discard this patch.
src/Rule/Upload.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     private function check($value, Element $element)
79 79
     {
80 80
         foreach ($this->getParams() as $rule => $ruleOpts) {
81
-           // $method = 'unknown';
81
+            // $method = 'unknown';
82 82
             if (is_int($rule) && is_string($ruleOpts)) {
83 83
                 $rule = $ruleOpts;
84 84
                 $ruleOpts = null;
Please login to merge, or discard this patch.