Completed
Push — master ( e7a4b3...3357eb )
by Park Jong-Hun
02:29
created
app/Auth/PermissionManager/DatabasePermissionManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     {
22 22
         $operationKey = ArrayUtils::find($this->permission, $operation);
23 23
 
24
-        if($operationKey === false) {
24
+        if ($operationKey === false) {
25 25
             return null;
26 26
         }
27 27
 
Please login to merge, or discard this patch.
app/Admin/Welcome.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Controller\Admin;
4 4
 
5 5
 use Core\Application;
6
-use Core\Utils\ArrayUtils;
7 6
 use Core\ViewModel;
8 7
 use Prob\ArrayUtil\KeyGlue;
9 8
 
Please login to merge, or discard this patch.
core/ErrorReporter/ErrorReporterService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
         /**
34 34
          * @var ErrorReporter $reporter
35 35
          */
36
-        set_exception_handler(function ($exception) {
36
+        set_exception_handler(function($exception) {
37 37
             foreach ($this->errorReporters as $reporter) {
38 38
                 $reporter->report($exception);
39 39
             }
40 40
         });
41 41
 
42
-        set_error_handler(function ($errno, $errstr, $errfile, $errline, array $errcontext) {
42
+        set_error_handler(function($errno, $errstr, $errfile, $errline, array $errcontext) {
43 43
             throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
44 44
         });
45 45
     }
Please login to merge, or discard this patch.