Passed
Push — feature/6.x ( a9714e...4f970f )
by Schlaefer
02:57
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.
plugins/Installer/templates/Install/salt.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,13 @@
 block discarded – undo
27 27
                 <?= __d('installer', 'salt.warning') ?>
28 28
             </p>
29 29
             <?= $reloadLink ?>
30
-        <?php else : ?>
30
+        <?php else {
31
+    : ?>
31 32
             <div class="alert alert-success">
32 33
                 <?= __d('installer', 'salt.success') ?>
33 34
             </div>
34
-        <?php endif; ?>
35
+        <?php endif;
36
+}
37
+?>
35 38
   </div>
36 39
 </div>
Please login to merge, or discard this patch.
plugins/Installer/templates/Install/dbconnection.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,13 @@
 block discarded – undo
22 22
                 <?= __d('installer', 'connection.see') ?>
23 23
             </p>
24 24
             <?= $reloadLink ?>
25
-        <?php else : ?>
25
+        <?php else {
26
+    : ?>
26 27
             <div class="alert alert-success">
27 28
                 <?= __d('installer', 'connection.success') ?>
28 29
             </div>
29
-        <?php endif; ?>
30
+        <?php endif;
31
+}
32
+?>
30 33
     </div>
31 34
 </div>
Please login to merge, or discard this patch.
templates/Users/de/rs.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,8 @@  discard block
 block discarded – undo
34 34
                 Der Benutzer wurde bereits in der Vergangenheit aktiviert.
35 35
             </p>
36 36
             <?php
37
-        else : ?>
37
+        else {
38
+            : ?>
38 39
             <h2>Aktivierung fehlgeschlagen</h2>
39 40
             <p>
40 41
                 Eine Aktivierung konnte nicht durchgeführt werden. Bitte prüfen
@@ -49,6 +50,8 @@  discard block
 block discarded – undo
49 50
                     ist
50 51
                 </li>
51 52
             </ul>
52
-        <?php endif; ?>
53
+        <?php endif;
54
+        }
55
+        ?>
53 56
     </div>
54 57
 </div>
Please login to merge, or discard this patch.
templates/Users/rs.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,8 @@  discard block
 block discarded – undo
33 33
                 The registration was already finished in the past.
34 34
             </p>
35 35
             <?php
36
-        else : ?>
36
+        else {
37
+            : ?>
37 38
             <h2>Registration Failed</h2>
38 39
             <p>
39 40
                 The registration wasn't confirmed. Please check that:
@@ -46,6 +47,8 @@  discard block
 block discarded – undo
46 47
                     the registration was made within the last 24 hours
47 48
                 </li>
48 49
             </ul>
49
-        <?php endif; ?>
50
+        <?php endif;
51
+        }
52
+        ?>
50 53
     </div>
51 54
 </div>
Please login to merge, or discard this patch.