Skip to content

Commit 44fa9ca

Browse files
committed
fixed CS
1 parent acf9975 commit 44fa9ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Filesystem.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -746,16 +746,16 @@ private function getSchemeAndHierarchy($filename)
746746
private static function box($func)
747747
{
748748
self::$lastError = null;
749-
\set_error_handler(__CLASS__.'::handleError');
749+
set_error_handler(__CLASS__.'::handleError');
750750
try {
751751
$result = \call_user_func_array($func, \array_slice(\func_get_args(), 1));
752-
\restore_error_handler();
752+
restore_error_handler();
753753

754754
return $result;
755755
} catch (\Throwable $e) {
756756
} catch (\Exception $e) {
757757
}
758-
\restore_error_handler();
758+
restore_error_handler();
759759

760760
throw $e;
761761
}

0 commit comments

Comments
 (0)