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.
src/Model/Table/UsersTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
         $this->addBehavior(
78 78
             'Proffer.Proffer',
79 79
             [
80
-                'avatar' => [ // The name of your upload field (filename)
80
+                'avatar' => [// The name of your upload field (filename)
81 81
                     'root' => $avatarRootDir,
82 82
                     'dir' => 'avatar_dir', // field for upload directory
83 83
                     'thumbnailSizes' => [
Please login to merge, or discard this patch.
src/Controller/Component/TitleComponent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
         $page = $this->getPageTitle($controller);
40 40
         $title = $this->getTitleForLayout($controller, $page, $forum);
41
-        $controller->set(['titleForLayout' => $title, 'titleForPage' => $page ]);
41
+        $controller->set(['titleForLayout' => $title, 'titleForPage' => $page]);
42 42
     }
43 43
 
44 44
     /**
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/Admin/templates/Smilies/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
                     $codes = '';
59 59
                 }
60 60
                 ?>
61
-                <tr<?php echo $class;?>>
61
+                <tr<?php echo $class; ?>>
62 62
                     <td><?php echo $smiley->get('id'); ?>&nbsp;</td>
63 63
                     <td><code style="font-size: 0.85em;"><?= $codes ?></code></td>
64 64
                     <td><?php echo $smiley->get('sort'); ?>&nbsp;</td>
Please login to merge, or discard this patch.
plugins/Admin/templates/SmileyCodes/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
                 $class = ' class="altrow"';
27 27
             }
28 28
             ?>
29
-            <tr<?php echo $class;?>>
29
+            <tr<?php echo $class; ?>>
30 30
                 <td><?php echo $smileyCode->get('id'); ?>&nbsp;</td>
31 31
                 <td>
32 32
                     <?php
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.