@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @return int|bool |
100 | 100 | */ |
101 | - public function increment(string $key, mixed $value = 1): int|bool |
|
101 | + public function increment(string $key, mixed $value = 1): int | bool |
|
102 | 102 | { |
103 | 103 | return $this->apc->increment($this->prefix.$key, $value); |
104 | 104 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * |
112 | 112 | * @return int|bool |
113 | 113 | */ |
114 | - public function decrement(string $key, mixed $value = 1): int|bool |
|
114 | + public function decrement(string $key, mixed $value = 1): int | bool |
|
115 | 115 | { |
116 | 116 | return $this->apc->decrement($this->prefix.$key, $value); |
117 | 117 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * |
74 | 74 | * @return int|bool |
75 | 75 | */ |
76 | - public function increment(string $key, mixed $value = 1): int|bool |
|
76 | + public function increment(string $key, mixed $value = 1): int | bool |
|
77 | 77 | { |
78 | 78 | return false; |
79 | 79 | } |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @return int|bool |
88 | 88 | */ |
89 | - public function decrement(string $key, mixed $value = 1): int|bool |
|
89 | + public function decrement(string $key, mixed $value = 1): int | bool |
|
90 | 90 | { |
91 | 91 | return false; |
92 | 92 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | { |
94 | 94 | $results = []; |
95 | 95 | |
96 | - $values = $this->connection()->mget(array_map(function ($key) { |
|
96 | + $values = $this->connection()->mget(array_map(function($key) { |
|
97 | 97 | return $this->prefix.$key; |
98 | 98 | }, $keys)); |
99 | 99 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | * |
156 | 156 | * @return int|bool |
157 | 157 | */ |
158 | - public function increment(string $key, mixed $value = 1): int|bool |
|
158 | + public function increment(string $key, mixed $value = 1): int | bool |
|
159 | 159 | { |
160 | 160 | return $this->connection()->incrby($this->prefix.$key, $value); |
161 | 161 | } |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | * |
169 | 169 | * @return int|bool |
170 | 170 | */ |
171 | - public function decrement(string $key, mixed $value = 1): int|bool |
|
171 | + public function decrement(string $key, mixed $value = 1): int | bool |
|
172 | 172 | { |
173 | 173 | return $this->connection()->decrby($this->prefix.$key, $value); |
174 | 174 | } |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | */ |
150 | 150 | protected function call(): Closure |
151 | 151 | { |
152 | - return function ($stack, $pipe) { |
|
153 | - return function ($passable) use ($stack, $pipe) { |
|
152 | + return function($stack, $pipe) { |
|
153 | + return function($passable) use ($stack, $pipe) { |
|
154 | 154 | try { |
155 | 155 | if (is_callable($pipe)) { |
156 | 156 | return $pipe($passable, $stack); |
@@ -203,10 +203,10 @@ discard block |
||
203 | 203 | */ |
204 | 204 | protected function prepareDestination(Closure $destination): Closure |
205 | 205 | { |
206 | - return function ($passable) use ($destination) { |
|
206 | + return function($passable) use ($destination) { |
|
207 | 207 | try { |
208 | 208 | return $destination($passable); |
209 | - } catch(Throwable $e) { |
|
209 | + } catch (Throwable $e) { |
|
210 | 210 | return $this->handleException($passable, $e); |
211 | 211 | } |
212 | 212 | }; |
@@ -162,6 +162,6 @@ |
||
162 | 162 | */ |
163 | 163 | public function setRequest(Request $request): void |
164 | 164 | { |
165 | - $this->request = $request; |
|
165 | + $this->request = $request; |
|
166 | 166 | } |
167 | 167 | } |
168 | 168 | \ No newline at end of file |
@@ -229,7 +229,7 @@ |
||
229 | 229 | return $payload; |
230 | 230 | } |
231 | 231 | |
232 | - return take($payload, function (&$payload) { |
|
232 | + return take($payload, function(&$payload) { |
|
233 | 233 | // Pending calling the user ID using the auth system |
234 | 234 | |
235 | 235 | if ($this->container->bound('request')) { |
@@ -149,10 +149,10 @@ |
||
149 | 149 | public function gc($lifetime): int |
150 | 150 | { |
151 | 151 | $files = Finder::create() |
152 | - ->in($this->path) |
|
153 | - ->files() |
|
154 | - ->ignoreDotFiles(true) |
|
155 | - ->date('<= now - '.$lifetime.' seconds'); |
|
152 | + ->in($this->path) |
|
153 | + ->files() |
|
154 | + ->ignoreDotFiles(true) |
|
155 | + ->date('<= now - '.$lifetime.' seconds'); |
|
156 | 156 | |
157 | 157 | $countSessions = 0; |
158 | 158 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $this->registerSessionManager(); |
42 | 42 | $this->registerSessionDriver(); |
43 | 43 | |
44 | - $this->app->singleton(StartSession::class, function ($app) { |
|
44 | + $this->app->singleton(StartSession::class, function($app) { |
|
45 | 45 | return new StartSession($app->make(SessionManager::class), fn () => $app->make(CacheFactory::class)); |
46 | 46 | }); |
47 | 47 | } |
@@ -104,7 +104,7 @@ |
||
104 | 104 | protected function createDatabaseDriver() |
105 | 105 | { |
106 | 106 | $table = $this->config->get('session.table'); |
107 | - $lifetime = $this->config->get('session.lifetime') ; |
|
107 | + $lifetime = $this->config->get('session.lifetime'); |
|
108 | 108 | |
109 | 109 | return $this->buildSession(new DatabaseSessionHandler( |
110 | 110 | $this->getDatabaseConnection(), |