Completed
Push — develop ( 9f16e6...3b316f )
by Schlaefer
02:38
created
src/Lib/Saito/Exception/Logger/ExceptionLogger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         $requestMethod = $request ? $request->getMethod() : false;
57 57
         if ($url && $requestMethod) {
58
-            $url .= ' ' . $requestMethod;
58
+            $url .= ' '.$requestMethod;
59 59
         }
60 60
         if ($url) {
61 61
             $this->_add($url, 'Request URL');
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             $i++;
156 156
         }
157 157
 
158
-        return "\n" . implode("\n", $message);
158
+        return "\n".implode("\n", $message);
159 159
     }
160 160
 
161 161
     /**
Please login to merge, or discard this patch.
src/Lib/Saito/Cache/ItemCache.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 
61 61
         if ($this->_settings['maxItems']) {
62 62
             $this->_gcFuzzy = $this->_settings['maxItemsFuzzy'];
63
-            $this->_gcMax = (int)($this->_settings['maxItems'] * (1 + $this->_gcFuzzy));
64
-            $this->_gcMin = (int)($this->_gcMax * (1 - $this->_gcFuzzy));
63
+            $this->_gcMax = (int) ($this->_settings['maxItems'] * (1 + $this->_gcFuzzy));
64
+            $this->_gcMin = (int) ($this->_gcMax * (1 - $this->_gcFuzzy));
65 65
         }
66 66
     }
67 67
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
         // keep items which were last used/updated
274 274
         uasort(
275 275
             $this->_cache,
276
-            function ($a, $b) {
276
+            function($a, $b) {
277 277
                 if ($a['metadata']['content_last_updated'] === $b['metadata']['content_last_updated']) {
278 278
                     return 0;
279 279
                 }
Please login to merge, or discard this patch.
src/Lib/Saito/Cache/CacheSupport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function __construct()
35 35
     {
36 36
         foreach ($this->_buildInCaches as $_name) {
37
-            $name = 'Saito\Cache\\' . $_name;
37
+            $name = 'Saito\Cache\\'.$_name;
38 38
             $this->add(new $name);
39 39
         }
40 40
         EventManager::instance()->on($this);
Please login to merge, or discard this patch.
src/Lib/Saito/Thread/Renderer/ThreadHtmlRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
             if (!isset(self::$_catL10n[$categoryId])) {
118 118
                 $accession = $posting['category']['accession'];
119 119
                 $catAcs = h(
120
-                    __d('nondynamic', 'category_acs_' . $accession . '_exp')
120
+                    __d('nondynamic', 'category_acs_'.$accession.'_exp')
121 121
                 );
122 122
                 $catDesc = h($posting['category']['description']);
123 123
                 $catTitle = h($posting['category']['category']);
Please login to merge, or discard this patch.
src/Lib/Saito/Thread/Renderer/HtmlRendererAbstract.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             $childrenHtml .= $this->_renderNode($child);
92 92
         }
93 93
         $level = $node->getLevel();
94
-        $html .= '<li>' . $this->_wrapUl($childrenHtml, $level + 1) . '</li>';
94
+        $html .= '<li>'.$this->_wrapUl($childrenHtml, $level + 1).'</li>';
95 95
 
96 96
         return $html;
97 97
     }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         $data = '';
123 123
         if ($level === 0) {
124 124
             $class .= ' root';
125
-            $data = 'data-id="' . $id . '"';
125
+            $data = 'data-id="'.$id.'"';
126 126
         }
127 127
 
128 128
         return "<ul {$data} class=\"{$class}\">{$string}</ul>";
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     {
139 139
         $entryType = ($node->isRoot()) ? 'et-root' : 'et-reply';
140 140
         $entryType .= ($node->isUnread()) ? ' et-new' : ' et-old';
141
-        if ($node->get('id') === (int)$this->_settings['currentEntry']) {
141
+        if ($node->get('id') === (int) $this->_settings['currentEntry']) {
142 142
             $entryType .= ' et-current';
143 143
         }
144 144
         $css = $entryType;
Please login to merge, or discard this patch.
src/Lib/Saito/App/Stats.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     {
23 23
         return $this->remember(
24 24
             'UsersOnline',
25
-            function () {
25
+            function() {
26 26
                 $UserOnline = TableRegistry::get('UserOnline');
27 27
 
28 28
                 return $UserOnline->getLoggedIn();
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     {
40 40
         return $this->remember(
41 41
             'numberOfRegisteredUsersOnline',
42
-            function () {
42
+            function() {
43 43
                 return $this->getRegistredUsersOnline()->count();
44 44
             }
45 45
         );
@@ -121,12 +121,12 @@  discard block
 block discarded – undo
121 121
     {
122 122
         $stats = $this->remember(
123 123
             'init',
124
-            function () {
124
+            function() {
125 125
                 Stopwatch::start('Saito\App\Stats::init()');
126 126
 
127 127
                 $stats = Cache::remember(
128 128
                     'header_counter',
129
-                    function () {
129
+                    function() {
130 130
                         $Entries = TableRegistry::get('Entries');
131 131
                         $Users = TableRegistry::get('Users');
132 132
                         $UserOnline = TableRegistry::get('UserOnline');
Please login to merge, or discard this patch.
src/Lib/Model/Table/FieldFilter.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
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         return $this->_mapFields(
57 57
             $data,
58 58
             $required,
59
-            function (&$data, $field, $model = null) {
59
+            function(&$data, $field, $model = null) {
60 60
                 if ($model === null) {
61 61
                     if (!isset($data[$field])) {
62 62
                         return false;
Please login to merge, or discard this patch.
src/Shell/ConsoleShell.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,11 +68,11 @@
 block discarded – undo
68 68
     {
69 69
         $parser = new ConsoleOptionParser('console');
70 70
         $parser->setDescription(
71
-            'This shell provides a REPL that you can use to interact ' .
72
-            'with your application in an interactive fashion. You can use ' .
73
-            'it to run adhoc queries with your models, or experiment ' .
74
-            'and explore the features of CakePHP and your application.' .
75
-            "\n\n" .
71
+            'This shell provides a REPL that you can use to interact '.
72
+            'with your application in an interactive fashion. You can use '.
73
+            'it to run adhoc queries with your models, or experiment '.
74
+            'and explore the features of CakePHP and your application.'.
75
+            "\n\n".
76 76
             'You will need to have psysh installed for this Shell to work.'
77 77
         );
78 78
 
Please login to merge, or discard this patch.
src/Shell/SaitoDummyDataShell.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
     public function generatePostings()
113 113
     {
114
-        $nPostings = (int)$this->in(
114
+        $nPostings = (int) $this->in(
115 115
             'Number of postings to generate?',
116 116
             null,
117 117
             100
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         if ($nPostings === 0) {
120 120
             return;
121 121
         }
122
-        $ratio = (int)$this->in('Average answers per thread?', null, 10);
122
+        $ratio = (int) $this->in('Average answers per thread?', null, 10);
123 123
         $seed = $nPostings / $ratio;
124 124
 
125 125
         $CurrentUser = new SaitoUserDummy();
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             $posting = $this->Entries->createPosting($posting);
144 144
             if (empty($posting)) {
145 145
                 throw new \RuntimeException(
146
-                    'Could not create entry: ' . $posting
146
+                    'Could not create entry: '.$posting
147 147
                 );
148 148
             }
149 149
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
     public function generateUsers()
161 161
     {
162 162
         $max = count($this->_users);
163
-        $n = (int)$this->in(
163
+        $n = (int) $this->in(
164 164
             "Number of users to generate (max: $max)?",
165 165
             null,
166 166
             0
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
         }
197 197
         $this->out('.', 0);
198 198
         if ($i > 1 && !($i % 50)) {
199
-            $percent = (int)floor($i / $off * 100);
199
+            $percent = (int) floor($i / $off * 100);
200 200
             $this->out(sprintf(' %3s%%', $percent), 1);
201 201
         }
202 202
     }
Please login to merge, or discard this patch.