Completed
Branch 5.0.0/release (401ada)
by Schlaefer
07:44
created
plugins/Installer/src/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Saito - The Threaded Web Forum
Please login to merge, or discard this patch.
plugins/Installer/src/Form/UpdaterStartForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Saito - The Threaded Web Forum
Please login to merge, or discard this patch.
plugins/Installer/src/Controller/AppController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Saito - The Threaded Web Forum
Please login to merge, or discard this patch.
plugins/Installer/src/Lib/DbVersion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Saito - The Threaded Web Forum
Please login to merge, or discard this patch.
plugins/Installer/src/Lib/IntegrationTestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Saito - The Threaded Web Forum
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             'shouts',
55 55
         ];
56 56
         foreach ($tables as $table) {
57
-            $connection->execute('DROP TABLE IF EXISTS ' . $table . ';');
57
+            $connection->execute('DROP TABLE IF EXISTS '.$table.';');
58 58
         }
59 59
 
60 60
         // Tell the fixture manager that all tables are gone.
Please login to merge, or discard this patch.
bin/cake.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 #!/usr/bin/php -q
2 2
 <?php
3 3
 // Check platform requirements
4
-require dirname(__DIR__) . '/config/requirements.php';
5
-require dirname(__DIR__) . '/vendor/autoload.php';
4
+require dirname(__DIR__).'/config/requirements.php';
5
+require dirname(__DIR__).'/vendor/autoload.php';
6 6
 
7 7
 use App\Application;
8 8
 use Cake\Console\CommandRunner;
9 9
 
10 10
 // Build the runner with an application and root executable name.
11
-$runner = new CommandRunner(new Application(dirname(__DIR__) . '/config'), 'cake');
11
+$runner = new CommandRunner(new Application(dirname(__DIR__).'/config'), 'cake');
12 12
 exit($runner->run($argv));
Please login to merge, or discard this patch.
src/Auth/Mlf2PasswordHasher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
     {
19 19
         // compare to includes/functions.inc.php generate_pw_hash() mlf 2.3
20 20
         $salt = self::_generateRandomString(10);
21
-        $saltedHash = sha1($password . $salt);
22
-        $hashWithSalt = $saltedHash . $salt;
21
+        $saltedHash = sha1($password.$salt);
22
+        $hashWithSalt = $saltedHash.$salt;
23 23
 
24 24
         return $hashWithSalt;
25 25
     }
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         // compare to includes/functions.inc.php is_pw_correct() mlf 2.3
50 50
         $saltedHash = substr($hash, 0, 40);
51 51
         $salt = substr($hash, 40, 10);
52
-        if (sha1($password . $salt) == $saltedHash) :
52
+        if (sha1($password.$salt) == $saltedHash) :
53 53
             $out = true;
54 54
         endif;
55 55
 
Please login to merge, or discard this patch.
src/Middleware/SaitoBootstrapMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * Saito - The Threaded Web Forum
Please login to merge, or discard this patch.
src/View/Helper/PostingHelper.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
         if ($lastAction !== 'add') {
50 50
             $session = $this->request->getSession();
51 51
             if ($session->read('paginator.lastPage')) {
52
-                $params[] = 'page=' . $session->read('paginator.lastPage');
52
+                $params[] = 'page='.$session->read('paginator.lastPage');
53 53
             }
54 54
         }
55
-        $params[] = 'jump=' . $tid;
55
+        $params[] = 'jump='.$tid;
56 56
 
57
-        return '/?' . implode('&', $params);
57
+        return '/?'.implode('&', $params);
58 58
     }
59 59
 
60 60
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         $id = $posting->get('id');
71 71
         $webroot = $this->request->getAttribute('webroot');
72 72
         $url = "{$webroot}entries/view/{$id}";
73
-        $link = "<a href=\"{$url}\" class=\"{$options['class']}\">" . $this->getSubject($posting) . '</a>';
73
+        $link = "<a href=\"{$url}\" class=\"{$options['class']}\">".$this->getSubject($posting).'</a>';
74 74
 
75 75
         return $link;
76 76
     }
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      */
126 126
     public function views(BasicPostingInterface $posting)
127 127
     {
128
-        return __('views_headline') . ': ' . $posting->get('views');
128
+        return __('views_headline').': '.$posting->get('views');
129 129
     }
130 130
 
131 131
     /**
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     {
142 142
         $options += [
143 143
             'lineCache' => $this->_View->get('LineCache'),
144
-            'maxThreadDepthIndent' => (int)Configure::read(
144
+            'maxThreadDepthIndent' => (int) Configure::read(
145 145
                 'Saito.Settings.thread_depth_indent'
146 146
             ),
147 147
             'renderer' => 'thread',
@@ -184,10 +184,10 @@  discard block
 block discarded – undo
184 184
     {
185 185
         $out = '';
186 186
         if ($entry->isPinned()) {
187
-            $out .= '<i class="fa fa-thumb-tack" title="' . __('fixed') . '"></i> ';
187
+            $out .= '<i class="fa fa-thumb-tack" title="'.__('fixed').'"></i> ';
188 188
         }
189 189
         // anchor for inserting solve-icon via FE-JS
190
-        $out .= '<span class="solves ' . $entry->get('id') . '">';
190
+        $out .= '<span class="solves '.$entry->get('id').'">';
191 191
         if ($entry->get('solves')) {
192 192
             $out .= $this->solvedBadge();
193 193
         }
@@ -211,8 +211,8 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function solvedBadge()
213 213
     {
214
-        return '<i class="fa fa-badge-solves solves-isSolved" title="' .
215
-        __('Helpful entry') . '"></i>';
214
+        return '<i class="fa fa-badge-solves solves-isSolved" title="'.
215
+        __('Helpful entry').'"></i>';
216 216
     }
217 217
 
218 218
     /**
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
      */
225 225
     public function getSubject(BasicPostingInterface $posting)
226 226
     {
227
-        return \h($posting->get('subject')) . ($posting->isNt() ? ' n/t' : '');
227
+        return \h($posting->get('subject')).($posting->isNt() ? ' n/t' : '');
228 228
     }
229 229
 
230 230
     /**
Please login to merge, or discard this patch.