Completed
Push — feature/6.x ( 5f23eb...e064bf )
by Schlaefer
03:44
created
config/Seeds/SmiliesSeed.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function run()
20 20
     {
21 21
         $data =
22
-          [
22
+            [
23 23
             [
24 24
                 'id' => 1,
25 25
                 'sort' => 1,
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
                 'sort' => 17,
106 106
                 'icon' => 'angry',
107 107
             ]
108
-          ];
108
+            ];
109 109
 
110 110
         $table = $this->table('smilies');
111 111
         $table->insert($data)->save();
Please login to merge, or discard this patch.
plugins/Bookmarks/tests/TestCase/Model/Table/BookmarksTableTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         'app.User',
29 29
         'app.UserOnline',
30 30
         'plugin.Bookmarks.Bookmark',
31
-       ];
31
+        ];
32 32
 
33 33
     /**
34 34
      * Test Bookmark table validation.
Please login to merge, or discard this patch.
plugins/SaitoSearch/templates/Searches/simple.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
             ],
29 29
             [
30 30
             'url' => [
31
-              'controller' => 'searches',
32
-              'action' => 'simple',
31
+                'controller' => 'searches',
32
+                'action' => 'simple',
33 33
             ],
34 34
             'type' => 'GET',
35 35
             'class' => 'search_form',
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
         $sortBy = $this->Form->radio(
54 54
             'order',
55 55
             [
56
-              ['text' => __d('saito_search', 'Time'), 'value' => 'time'],
57
-              ['text' => __d('saito_search', 'Rank'), 'value' => 'rank'],
56
+                ['text' => __d('saito_search', 'Time'), 'value' => 'time'],
57
+                ['text' => __d('saito_search', 'Rank'), 'value' => 'rank'],
58 58
             ],
59 59
             [
60 60
                 'class' => 'form-check-input',
Please login to merge, or discard this patch.