GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Branch development (274a82)
by butschster
07:06
created
src/Console/Commands/UserManagerCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             return;
70 70
         }
71 71
 
72
-        if (! is_null($userClass::where('email', $email)->first())) {
72
+        if (!is_null($userClass::where('email', $email)->first())) {
73 73
             $this->error("User with same email [{$email}] exists.");
74 74
 
75 75
             return;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         }
121 121
 
122 122
         $confirm = $this->confirm("Are you sure want to delete user with id [{$id}]?", false);
123
-        if (! $confirm) {
123
+        if (!$confirm) {
124 124
             return;
125 125
         }
126 126
 
Please login to merge, or discard this patch.
src/Console/Installation/Command.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@
 block discarded – undo
28 28
      */
29 29
     public function fire(Filesystem $files)
30 30
     {
31
-        if (! defined('SLEEPINGOWL_STUB_PATH')) {
31
+        if (!defined('SLEEPINGOWL_STUB_PATH')) {
32 32
             define('SLEEPINGOWL_STUB_PATH', __DIR__.'/stubs');
33 33
         }
34 34
 
35
-        if (! $this->confirmToProceed('SleepingOwl Admin')) {
35
+        if (!$this->confirmToProceed('SleepingOwl Admin')) {
36 36
             return;
37 37
         }
38 38
 
Please login to merge, or discard this patch.
src/Form/FormElement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
      */
130 130
     public function setValidationRules($validationRules)
131 131
     {
132
-        if (! is_array($validationRules)) {
132
+        if (!is_array($validationRules)) {
133 133
             $validationRules = func_get_args();
134 134
         }
135 135
 
Please login to merge, or discard this patch.
src/Form/Element/View.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     {
47 47
         $this->view = $view;
48 48
 
49
-        $this->setDisplay(function ($model) {
49
+        $this->setDisplay(function($model) {
50 50
             $this->data['model'] = $model;
51 51
 
52 52
             return view($this->getView(), $this->data);
Please login to merge, or discard this patch.
src/Form/Columns/Columns.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
             $element = new Column($element);
66 66
         }
67 67
 
68
-        if (! ($element instanceof ColumnInterface)) {
68
+        if (!($element instanceof ColumnInterface)) {
69 69
             throw new \Exception('Column should be instance of ColumnInterface');
70 70
         }
71 71
 
@@ -80,16 +80,16 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $this->setHtmlAttribute('class', 'row');
82 82
 
83
-        $count = $this->getElements()->filter(function (ColumnInterface $column) {
83
+        $count = $this->getElements()->filter(function(ColumnInterface $column) {
84 84
             return $column->getWidth() === 0;
85 85
         })->count();
86 86
 
87
-        $width = $this->maxWidth - $this->getElements()->sum(function (ColumnInterface $column) {
87
+        $width = $this->maxWidth - $this->getElements()->sum(function(ColumnInterface $column) {
88 88
             return $column->getWidth();
89 89
         });
90 90
 
91
-        $this->getElements()->each(function (ColumnInterface $column) use ($width, $count) {
92
-            if (! $column->getWidth()) {
91
+        $this->getElements()->each(function(ColumnInterface $column) use ($width, $count) {
92
+            if (!$column->getWidth()) {
93 93
                 $column->setWidth(floor($width / $count));
94 94
             }
95 95
         });
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      */
130 130
     public function setSize($size)
131 131
     {
132
-        $this->getColumns()->each(function (ColumnInterface $column) use ($size) {
132
+        $this->getColumns()->each(function(ColumnInterface $column) use ($size) {
133 133
             $column->setSize($size);
134 134
         });
135 135
     }
Please login to merge, or discard this patch.
src/Display/DisplayTab.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,11 +60,11 @@
 block discarded – undo
60 60
     {
61 61
         $this->content = $content;
62 62
 
63
-        if (! is_null($label)) {
63
+        if (!is_null($label)) {
64 64
             $this->setLabel($label);
65 65
         }
66 66
 
67
-        if (! is_null($icon)) {
67
+        if (!is_null($icon)) {
68 68
             $this->setIcon($icon);
69 69
         }
70 70
     }
Please login to merge, or discard this patch.
src/Display/Extension/Apply.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function set($applies)
28 28
     {
29
-        if (! is_array($applies)) {
29
+        if (!is_array($applies)) {
30 30
             $applies = func_get_args();
31 31
         }
32 32
 
Please login to merge, or discard this patch.
src/Display/Extension/Scopes.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function push($scope)
40 40
     {
41
-        if (! is_array($scope)) {
41
+        if (!is_array($scope)) {
42 42
             $scope = func_get_args();
43 43
         }
44 44
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     public function modifyQuery(Builder $query)
66 66
     {
67 67
         foreach ($this->scopes as $scope) {
68
-            if (! is_null($scope)) {
68
+            if (!is_null($scope)) {
69 69
                 if (is_array($scope)) {
70 70
                     $method = array_shift($scope);
71 71
                     $params = $scope;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param array|string $scopes
24 24
      *
25
-     * @return $this
25
+     * @return \SleepingOwl\Admin\Contracts\Display\DisplayInterface
26 26
      */
27 27
     public function set($scopes)
28 28
     {
Please login to merge, or discard this patch.
src/Display/DisplayDatatables.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      */
88 88
     public function setOrder($order)
89 89
     {
90
-        if (! is_array($order)) {
90
+        if (!is_array($order)) {
91 91
             $order = func_get_args();
92 92
         }
93 93
 
Please login to merge, or discard this patch.