Passed
Pull Request — main (#15)
by
unknown
19:56 queued 15:33
created
src/Config/Configurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     {
70 70
         $this->invalidate();
71 71
 
72
-        if ($overwrite || ! isset($this->configSchemas[$key])) {
72
+        if ($overwrite || !isset($this->configSchemas[$key])) {
73 73
             $this->configSchemas[$key] = $schema;
74 74
         }
75 75
     }
Please login to merge, or discard this patch.
src/Debug/Logger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -327,14 +327,14 @@
 block discarded – undo
327 327
      */
328 328
     private function setFormatter(object $handler, array $allowed, ?string $format = 'json'): object
329 329
     {
330
-        if (! method_exists($handler, 'setFormatter')) {
330
+        if (!method_exists($handler, 'setFormatter')) {
331 331
             return $handler;
332 332
         }
333 333
 
334 334
         if (empty($format)) {
335 335
             $format = 'json';
336 336
         }
337
-        if (! empty($allowed) && ! in_array($format, $allowed, true)) {
337
+        if (!empty($allowed) && !in_array($format, $allowed, true)) {
338 338
             throw new InvalidArgumentException('Invalid formatter for log file handler. Accepts values: ' . implode('/', $allowed));
339 339
         }
340 340
 
Please login to merge, or discard this patch.
src/Debug/Timer.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 start(string $name, ?float $time = null): self
35 35
     {
36 36
         $this->timers[strtolower($name)] = [
37
-            'start' => ! empty($time) ? $time : microtime(true),
37
+            'start' => !empty($time) ? $time : microtime(true),
38 38
             'end'   => null,
39 39
         ];
40 40
 
Please login to merge, or discard this patch.
src/Http/ResponseEmitter.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
         $body = $response->getBody();
113 113
 
114
-        if (! $body->isSeekable()) {
114
+        if (!$body->isSeekable()) {
115 115
             echo $body;
116 116
 
117 117
             return;
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
         $body->rewind();
121 121
 
122
-        while (! $body->eof()) {
122
+        while (!$body->eof()) {
123 123
             echo $body->read($maxBufferLength);
124 124
         }
125 125
     }
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
         $body = $response->getBody();
140 140
 
141
-        if (! $body->isSeekable()) {
141
+        if (!$body->isSeekable()) {
142 142
             $contents = $body->getContents();
143 143
             echo substr($contents, $first, $last - $first + 1);
144 144
 
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         $pos    = 0;
151 151
         $length = $last - $first + 1;
152 152
 
153
-        while (! $body->eof() && $pos < $length) {
153
+        while (!$body->eof() && $pos < $length) {
154 154
             if (($pos + $maxBufferLength) > $length) {
155 155
                 echo $body->read($length - $pos);
156 156
                 break;
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
                 $key        = strtolower($key);
234 234
                 $data[$key] = $value;
235 235
             }
236
-            if (! empty($data['expires'])) {
236
+            if (!empty($data['expires'])) {
237 237
                 $data['expires'] = strtotime($data['expires']);
238 238
             }
239 239
             setcookie(
Please login to merge, or discard this patch.
src/Http/Negotiator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         }
207 207
 
208 208
         // Sort to get the highest results first
209
-        usort($results, static function ($a, $b) {
209
+        usort($results, static function($a, $b) {
210 210
             if ($a['q'] === $b['q']) {
211 211
                 $a_ast = substr_count($a['value'], '*');
212 212
                 $b_ast = substr_count($b['value'], '*');
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
         }
277 277
 
278 278
         foreach ($supported['params'] as $label => $value) {
279
-            if (! isset($acceptable['params'][$label]) || $acceptable['params'][$label] !== $value) {
279
+            if (!isset($acceptable['params'][$label]) || $acceptable['params'][$label] !== $value) {
280 280
                 return false;
281 281
             }
282 282
         }
Please login to merge, or discard this patch.
src/View/Adapters/LatteAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 
70 70
         $auto_refresh = $this->config['auto_refresh'] ?? 'auto';
71 71
         if ($auto_refresh === 'auto') {
72
-            $auto_refresh = ! is_online();
72
+            $auto_refresh = !is_online();
73 73
         }
74 74
         $this->latte->setAutoRefresh($auto_refresh);
75 75
 
Please login to merge, or discard this patch.
src/Event/EventManager.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public function __construct(array $events = [])
48 48
     {
49 49
         $this->events = $events;
50
-        if (! array_key_exists(self::WILDCARD, $this->events)) {
50
+        if (!array_key_exists(self::WILDCARD, $this->events)) {
51 51
             $this->events[self::WILDCARD] = [];
52 52
         }
53 53
     }
@@ -65,14 +65,14 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function attach(string $event, callable $callback, int $priority = 0): bool
67 67
     {
68
-        if (! array_key_exists($event, $this->events)) {
68
+        if (!array_key_exists($event, $this->events)) {
69 69
             $this->events[$event] = [];
70 70
         }
71
-        if (! array_key_exists($priority, $this->events[$event])) {
71
+        if (!array_key_exists($priority, $this->events[$event])) {
72 72
             $this->events[$event][$priority] = [];
73 73
         }
74 74
 
75
-        if (! in_array($callback, $this->events[$event][$priority], true)) {
75
+        if (!in_array($callback, $this->events[$event][$priority], true)) {
76 76
             $this->events[$event][$priority][] = $callback;
77 77
 
78 78
             return true;
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function detach(string $event, callable $callback): bool
96 96
     {
97
-        if (! array_key_exists($event, $this->events) || ! $this->events[$event]) {
97
+        if (!array_key_exists($event, $this->events) || !$this->events[$event]) {
98 98
             return false;
99 99
         }
100 100
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      */
116 116
     public function trigger($event, $target = null, $argv = [])
117 117
     {
118
-        if (! ($event instanceof EventInterface)) {
118
+        if (!($event instanceof EventInterface)) {
119 119
             $event = new Event($event, $target, $argv);
120 120
         } else {
121 121
             if ($target) {
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         }
128 128
 
129 129
         $eventName = $event->getName();
130
-        if (! array_key_exists($eventName, $this->events)) {
130
+        if (!array_key_exists($eventName, $this->events)) {
131 131
             $this->events[$eventName] = [];
132 132
         }
133 133
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
         $result = null;
136 136
 
137 137
         foreach ($events as $priority) {
138
-            if (! is_array($priority)) {
138
+            if (!is_array($priority)) {
139 139
                 continue;
140 140
             }
141 141
 
Please login to merge, or discard this patch.
src/Formatter/Formatter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,19 +53,19 @@
 block discarded – undo
53 53
      */
54 54
     public static function type(string $mime): FormatterInterface
55 55
     {
56
-        if (! array_key_exists($mime, self::$formatters)) {
56
+        if (!array_key_exists($mime, self::$formatters)) {
57 57
             throw FormatException::invalidMime($mime);
58 58
         }
59 59
 
60 60
         $className = self::$formatters[$mime];
61 61
 
62
-        if (! class_exists($className)) {
62
+        if (!class_exists($className)) {
63 63
             throw FormatException::invalidFormatter($className);
64 64
         }
65 65
 
66 66
         $class = new $className();
67 67
 
68
-        if (! $class instanceof FormatterInterface) {
68
+        if (!$class instanceof FormatterInterface) {
69 69
             throw FormatException::invalidFormatter($className);
70 70
         }
71 71
 
Please login to merge, or discard this patch.
src/Formatter/XmlFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         }
44 44
 
45 45
         // Forcez-le à être quelque chose d'utile
46
-        if (! is_array($data) && ! is_object($data)) {
46
+        if (!is_array($data) && !is_object($data)) {
47 47
             $data = (array) $data;
48 48
         }
49 49
 
Please login to merge, or discard this patch.