@@ -55,7 +55,7 @@ |
||
| 55 | 55 | { |
| 56 | 56 | $data = ($event->getData()) ?: []; |
| 57 | 57 | $data += ['subject' => $event->getSubject()]; |
| 58 | - $name = 'Event.Saito.' . $event->getName(); |
|
| 58 | + $name = 'Event.Saito.'.$event->getName(); |
|
| 59 | 59 | $this->dispatch($name, $data); |
| 60 | 60 | } |
| 61 | 61 | |
@@ -55,7 +55,7 @@ discard block |
||
| 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 |
||
| 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 | /** |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function __construct($type = null, $data = []) |
| 14 | 14 | { |
| 15 | - $message = 'Request was blackholed. Type: ' . $type; |
|
| 15 | + $message = 'Request was blackholed. Type: '.$type; |
|
| 16 | 16 | $this->__Logger = new ExceptionLogger; |
| 17 | 17 | $this->__Logger->write($message, $data); |
| 18 | 18 | parent::__construct($message, 400); |
@@ -60,8 +60,8 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -34,7 +34,7 @@ |
||
| 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); |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | { |
| 84 | 84 | $this->assertContainsTag( |
| 85 | 85 | $expected, |
| 86 | - (string)$this->_controller->response->getBody() |
|
| 86 | + (string) $this->_controller->response->getBody() |
|
| 87 | 87 | ); |
| 88 | 88 | } |
| 89 | 89 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | { |
| 158 | 158 | $document = new \DOMDocument; |
| 159 | 159 | libxml_use_internal_errors(true); |
| 160 | - $document->loadHTML('<!DOCTYPE html>' . $html); |
|
| 160 | + $document->loadHTML('<!DOCTYPE html>'.$html); |
|
| 161 | 161 | $xpath = new \DOMXPath($document); |
| 162 | 162 | libxml_clear_errors(); |
| 163 | 163 | |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $Mock = $this->getMockForTableParent($table, $methods); |
| 130 | 130 | EventManager::instance()->on( |
| 131 | 131 | 'Controller.initialize', |
| 132 | - function (Event $event) use ($table, $Mock) { |
|
| 132 | + function(Event $event) use ($table, $Mock) { |
|
| 133 | 133 | $Controller = $event->getSubject(); |
| 134 | 134 | $Controller->{$table} = $Mock; |
| 135 | 135 | } |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | $this->configRequest([ |
| 154 | 154 | 'headers' => [ |
| 155 | 155 | 'Accept' => 'application/json', |
| 156 | - 'Authorization' => 'bearer ' . $jwtToken, |
|
| 156 | + 'Authorization' => 'bearer '.$jwtToken, |
|
| 157 | 157 | ] |
| 158 | 158 | ]); |
| 159 | 159 | } |
@@ -117,7 +117,7 @@ |
||
| 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']); |
@@ -91,7 +91,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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; |