We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b7ddd commit 8ece6beCopy full SHA for 8ece6be
src/Loop/Driver.php
@@ -194,7 +194,7 @@ abstract public function unreference($watcherId);
194
*
195
* @return void
196
*/
197
- public final function storeState($key, $value)
+ final public function storeState($key, $value)
198
{
199
if ($value === null) {
200
unset($this->registry[$key]);
@@ -213,7 +213,7 @@ public final function storeState($key, $value)
213
214
* @return mixed previously stored value or null if it doesn't exist
215
216
- public final function fetchState($key)
+ final public function fetchState($key)
217
218
return isset($this->registry[$key]) ? $this->registry[$key] : null;
219
}
0 commit comments