Completed
Push — master ( 1dfc8b...437320 )
by Arthur
02:02
created
src/Support/helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('guard')) {
3
+if (!function_exists('guard')) {
4 4
     function guard(\Larapie\Guard\Contracts\GuardContract ...$guards) :void
5 5
     {
6 6
         (new \Larapie\Guard\Handlers\GuardHandler($guards))->handle();
Please login to merge, or discard this patch.
src/Guard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     protected function resolveException($exception) :\Throwable
35 35
     {
36
-        if (is_string($exception) || ! ($exception instanceof \Throwable)) {
36
+        if (is_string($exception) || !($exception instanceof \Throwable)) {
37 37
             try {
38 38
                 $exception = new $exception;
39 39
             } catch (\ArgumentCountError $e) {
Please login to merge, or discard this patch.