Completed
Push — master ( a06763...134e12 )
by Alexander
31s
created
app/modules/Tree/Model/Category.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,10 +47,10 @@
 block discarded – undo
47 47
     {
48 48
         $validator = new Validation();
49 49
         $validator->add('slug', new UniquenessValidator(
50
-           [
51
-               "model"   => $this,
52
-               "message" => "Category with slug '" . $this->slug . "' is already exists. Take another title"
53
-           ]
50
+            [
51
+                "model"   => $this,
52
+                "message" => "Category with slug '" . $this->slug . "' is already exists. Take another title"
53
+            ]
54 54
         ));
55 55
         return $this->validate($validator);
56 56
     }
Please login to merge, or discard this patch.