Skip to content

Commit 8ece6be

Browse files
committed
Make final PSR-2 compatible
1 parent 39b7ddd commit 8ece6be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Loop/Driver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ abstract public function unreference($watcherId);
194194
*
195195
* @return void
196196
*/
197-
public final function storeState($key, $value)
197+
final public function storeState($key, $value)
198198
{
199199
if ($value === null) {
200200
unset($this->registry[$key]);
@@ -213,7 +213,7 @@ public final function storeState($key, $value)
213213
*
214214
* @return mixed previously stored value or null if it doesn't exist
215215
*/
216-
public final function fetchState($key)
216+
final public function fetchState($key)
217217
{
218218
return isset($this->registry[$key]) ? $this->registry[$key] : null;
219219
}

0 commit comments

Comments
 (0)