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.
Completed
Push — master ( a845ba...201b56 )
by Steve
20s
created
src/components/panels/PanelTrait.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @return array|bool
43
+     * @return boolean
44 44
      */
45 45
     public function getIndexUrl()
46 46
     {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-     * @return string|bool
51
+     * @return boolean
52 52
      */
53 53
     public function getChart()
54 54
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function getLabel()
38 38
     {
39
-        return $this->getName() . ' <small>(' . count($this->data) . ')</small>';
39
+        return $this->getName().' <small>('.count($this->data).')</small>';
40 40
     }
41 41
 
42 42
     /**
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function getUrl()
82 82
     {
83
-        return Url::toRoute(['/' . $this->module->id . '/entry/view',
83
+        return Url::toRoute(['/'.$this->module->id.'/entry/view',
84 84
             'panel' => $this->id,
85 85
             'id' => $this->tag,
86 86
         ]);
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,9 @@
 block discarded – undo
87 87
     public function cleanup($maxAge = null)
88 88
     {
89 89
         $maxAge = $maxAge !== null ? $maxAge : $this->maxAge;
90
-        if ($maxAge === null)
91
-            return false;
90
+        if ($maxAge === null) {
91
+                    return false;
92
+        }
92 93
         return AuditTrail::deleteAll([
93 94
             '<=', 'created', date('Y-m-d 23:59:59', strtotime("-$maxAge days"))
94 95
         ]);
Please login to merge, or discard this patch.
src/components/Version.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
      * @param $id
83 83
      * @param $attribute
84 84
      * @param $version
85
-     * @return null|integer|float|string
85
+     * @return string|null
86 86
      */
87 87
     public static function findAttribute($class, $id, $attribute, $version)
88 88
     {
Please login to merge, or discard this patch.
src/panels/CurlPanel.php 4 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 
9 9
 use Yii;
10 10
 use bedezign\yii2\audit\components\panels\DataStoragePanel;
11
-use yii\grid\GridViewAsset;
12 11
 use yii\data\ArrayDataProvider;
12
+use yii\grid\GridViewAsset;
13 13
 
14 14
 /**
15 15
  * Class CurlPanel
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function getLabel()
63 63
     {
64
-        return $this->getName() . ' <small>(' . count($this->data) . ')</small>';
64
+        return $this->getName().' <small>('.count($this->data).')</small>';
65 65
     }
66 66
 
67 67
     /**
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         }
138 138
 
139 139
         if ($this->content)
140
-            $this->data[$id]['content']= curl_multi_getcontent($handle);
140
+            $this->data[$id]['content'] = curl_multi_getcontent($handle);
141 141
 
142 142
         // Cleanup empty things
143 143
         $this->data[$id] = array_filter($this->data[$id]);
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
         if (!is_resource($resource))
209 209
             return false;
210 210
 
211
-        $parts = explode('#', (string)$resource);
211
+        $parts = explode('#', (string) $resource);
212 212
         return array_pop($parts);
213 213
     }
214 214
 
Please login to merge, or discard this patch.
Braces   +18 added lines, -12 removed lines patch added patch discarded remove patch
@@ -96,19 +96,22 @@  discard block
 block discarded – undo
96 96
             curl_setopt($handle, CURLOPT_URL, $url);
97 97
         }
98 98
 
99
-        if ($postData)
100
-            $this->data[$id]['post'] = $postData;
99
+        if ($postData) {
100
+                    $this->data[$id]['post'] = $postData;
101
+        }
101 102
 
102
-        if ($this->headers)
103
-            curl_setopt($handle, CURLOPT_HEADERFUNCTION, [$this, 'captureHeader']);
103
+        if ($this->headers) {
104
+                    curl_setopt($handle, CURLOPT_HEADERFUNCTION, [$this, 'captureHeader']);
105
+        }
104 106
 
105 107
         if ($this->log) {
106 108
             curl_setopt($handle, CURLOPT_VERBOSE, true);
107 109
             curl_setopt($handle, CURLOPT_STDERR, $this->_logHandles[$id] = fopen('php://temp', 'rw+'));
108 110
         }
109 111
 
110
-        if ($this->content)
111
-            curl_setopt($handle, CURLOPT_RETURNTRANSFER, 1);
112
+        if ($this->content) {
113
+                    curl_setopt($handle, CURLOPT_RETURNTRANSFER, 1);
114
+        }
112 115
 
113 116
         return true;
114 117
     }
@@ -136,8 +139,9 @@  discard block
 block discarded – undo
136 139
             unset($this->_logHandles[$id]);
137 140
         }
138 141
 
139
-        if ($this->content)
140
-            $this->data[$id]['content']= curl_multi_getcontent($handle);
142
+        if ($this->content) {
143
+                    $this->data[$id]['content']= curl_multi_getcontent($handle);
144
+        }
141 145
 
142 146
         // Cleanup empty things
143 147
         $this->data[$id] = array_filter($this->data[$id]);
@@ -192,8 +196,9 @@  discard block
 block discarded – undo
192 196
     public function captureHeader($handle, $header)
193 197
     {
194 198
         $id = $this->id($handle);
195
-        if (!isset($this->data[$id]['headers']))
196
-            $this->data[$id]['headers'] = [];
199
+        if (!isset($this->data[$id]['headers'])) {
200
+                    $this->data[$id]['headers'] = [];
201
+        }
197 202
 
198 203
         $this->data[$id]['headers'][] = $header;
199 204
         return strlen($header);
@@ -205,8 +210,9 @@  discard block
 block discarded – undo
205 210
      */
206 211
     protected function id($resource)
207 212
     {
208
-        if (!is_resource($resource))
209
-            return false;
213
+        if (!is_resource($resource)) {
214
+                    return false;
215
+        }
210 216
 
211 217
         $parts = explode('#', (string)$resource);
212 218
         return array_pop($parts);
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Allows the user to log the performed cURL requests for later viewing.
4
- * Since these cannot be tracked automatically, the panel provides 2 utility functions: `curlStart()` and `curlEnd()`
5
- */
3
+     * Allows the user to log the performed cURL requests for later viewing.
4
+     * Since these cannot be tracked automatically, the panel provides 2 utility functions: `curlStart()` and `curlEnd()`
5
+     */
6 6
 
7 7
 namespace bedezign\yii2\audit\panels;
8 8
 
Please login to merge, or discard this patch.
src/panels/ErrorPanel.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
      * @param string     $file
78 78
      * @param int        $line
79 79
      * @param array      $trace         Stack trace to include. Use `Helper::generateTrace()` to create it.
80
-     * @return null|static
80
+     * @return AuditError|null
81 81
      */
82 82
     public function logMessage($entry_id, $message, $code = 0, $file = '', $line = 0, $trace = [])
83 83
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
             return $entry ? $this->log($entry->id, $e) : null;
30 30
         });
31 31
 
32
-        $this->module->registerFunction('errorMessage', function ($message, $code = 0, $file = '', $line = 0, $trace = []) {
32
+        $this->module->registerFunction('errorMessage', function($message, $code = 0, $file = '', $line = 0, $trace = []) {
33 33
             $entry = $this->module->getEntry(true);
34 34
             return $entry ? $this->logMessage($entry->id, $message, $code, $file, $line, $trace) : null;
35 35
         });
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         $error->file        = $exception->getFile();
62 62
         $error->line        = $exception->getLine();
63 63
         $error->trace       = Helper::cleanupTrace($exception->getTrace());
64
-        $error->hash        = Helper::hash($error->message . $error->file . $error->line);
64
+        $error->hash        = Helper::hash($error->message.$error->file.$error->line);
65 65
 
66 66
         $this->_exceptions[] = $exceptionId;
67 67
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $error->file        = $file;
89 89
         $error->line        = $line;
90 90
         $error->trace       = Helper::cleanupTrace($trace);
91
-        $error->hash        = Helper::hash($error->message . $error->file . $error->line);
91
+        $error->hash        = Helper::hash($error->message.$error->file.$error->line);
92 92
         return $error->save(false) ? $error : null;
93 93
     }
94 94
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function getLabel()
115 115
     {
116
-        return $this->getName() . ' <small>(' . count($this->_model->linkedErrors) . ')</small>';
116
+        return $this->getName().' <small>('.count($this->_model->linkedErrors).')</small>';
117 117
     }
118 118
 
119 119
     /**
Please login to merge, or discard this patch.
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,12 +47,14 @@  discard block
 block discarded – undo
47 47
     {
48 48
         // Only log each exception once
49 49
         $exceptionId = spl_object_hash($exception);
50
-        if (in_array($exceptionId, $this->_exceptions))
51
-            return true;
50
+        if (in_array($exceptionId, $this->_exceptions)) {
51
+                    return true;
52
+        }
52 53
 
53 54
         // If this is a follow up exception, make sure to log the base exception first
54
-        if ($exception->getPrevious())
55
-            $this->log($entry_id, $exception->getPrevious());
55
+        if ($exception->getPrevious()) {
56
+                    $this->log($entry_id, $exception->getPrevious());
57
+        }
56 58
 
57 59
         $error = new AuditError();
58 60
         $error->entry_id    = $entry_id;
@@ -165,8 +167,9 @@  discard block
 block discarded – undo
165 167
     public function cleanup($maxAge = null)
166 168
     {
167 169
         $maxAge = $maxAge !== null ? $maxAge : $this->maxAge;
168
-        if ($maxAge === null)
169
-            return false;
170
+        if ($maxAge === null) {
171
+                    return false;
172
+        }
170 173
         return AuditError::deleteAll([
171 174
             '<=', 'created', date('Y-m-d 23:59:59', strtotime("-$maxAge days"))
172 175
         ]);
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace bedezign\yii2\audit\panels;
4 4
 
5
+use Yii;
5 6
 use bedezign\yii2\audit\components\panels\Panel;
6 7
 use bedezign\yii2\audit\models\AuditTrail;
7 8
 use bedezign\yii2\audit\models\AuditTrailSearch;
8
-use Yii;
9 9
 use yii\grid\GridViewAsset;
10 10
 
11 11
 /**
Please login to merge, or discard this patch.
src/panels/MailPanel.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param Event $event
39
-     * @return null|static
39
+     * @return AuditMail|null
40 40
      */
41 41
     public function record($event)
42 42
     {
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace bedezign\yii2\audit\panels;
4 4
 
5
-use bedezign\yii2\audit\Audit;
6
-use bedezign\yii2\audit\components\panels\Panel;
7
-use bedezign\yii2\audit\models\AuditMail;
8
-use bedezign\yii2\audit\models\AuditMailSearch;
9 5
 use Swift_Message;
10 6
 use Swift_Mime_Attachment;
11 7
 use Swift_Mime_MimePart;
12 8
 use Yii;
9
+use bedezign\yii2\audit\Audit;
10
+use bedezign\yii2\audit\components\panels\Panel;
11
+use bedezign\yii2\audit\models\AuditMail;
12
+use bedezign\yii2\audit\models\AuditMailSearch;
13 13
 use yii\base\Event;
14 14
 use yii\grid\GridViewAsset;
15 15
 use yii\mail\BaseMailer;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function init()
30 30
     {
31 31
         parent::init();
32
-        Event::on(BaseMailer::className(), BaseMailer::EVENT_AFTER_SEND, function ($event) {
32
+        Event::on(BaseMailer::className(), BaseMailer::EVENT_AFTER_SEND, function($event) {
33 33
             $this->record($event);
34 34
         });
35 35
     }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      */
116 116
     public function getLabel()
117 117
     {
118
-        return $this->getName() . ' <small>(' . count($this->_model->mails) . ')</small>';
118
+        return $this->getName().' <small>('.count($this->_model->mails).')</small>';
119 119
     }
120 120
 
121 121
     /**
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,9 @@
 block discarded – undo
87 87
     public function cleanup($maxAge = null)
88 88
     {
89 89
         $maxAge = $maxAge !== null ? $maxAge : $this->maxAge;
90
-        if ($maxAge === null)
91
-            return false;
90
+        if ($maxAge === null) {
91
+                    return false;
92
+        }
92 93
         return AuditTrail::deleteAll([
93 94
             '<=', 'created', date('Y-m-d 23:59:59', strtotime("-$maxAge days"))
94 95
         ]);
Please login to merge, or discard this patch.
src/panels/ProfilingPanel.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace bedezign\yii2\audit\panels;
4 4
 
5
-use bedezign\yii2\audit\components\panels\DataStoragePanelTrait;
6 5
 use Yii;
6
+use bedezign\yii2\audit\components\panels\DataStoragePanelTrait;
7 7
 use yii\debug\models\search\Profile;
8 8
 use yii\grid\GridViewAsset;
9 9
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
     public function getLabel()
22 22
     {
23 23
         $memory = sprintf('%.1f MB', $this->data['memory'] / 1048576);
24
-        $time = number_format($this->data['time'] * 1000) . ' ms';
25
-        return $this->getName() . ' <small>(' . $memory . ' / ' . $time . ')</small>';
24
+        $time = number_format($this->data['time'] * 1000).' ms';
25
+        return $this->getName().' <small>('.$memory.' / '.$time.')</small>';
26 26
     }
27 27
 
28 28
     /**
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
             'dataProvider' => $dataProvider,
39 39
             'searchModel' => $searchModel,
40 40
             'memory' => sprintf('%.1f MB', $this->data['memory'] / 1048576),
41
-            'time' => number_format($this->data['time'] * 1000) . ' ms',
41
+            'time' => number_format($this->data['time'] * 1000).' ms',
42 42
         ]);
43 43
     }
44 44
 
Please login to merge, or discard this patch.
src/panels/SoapPanel.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace bedezign\yii2\audit\panels;
3 3
 
4 4
 use Yii;
5
-use bedezign\yii2\audit\models\AuditError;
6 5
 use bedezign\yii2\audit\components\panels\DataStoragePanel;
7 6
 use yii\data\ArrayDataProvider;
8 7
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function getLabel()
24 24
     {
25
-        return $this->getName() . ' <small>(' . count($this->data) . ')</small>';
25
+        return $this->getName().' <small>('.count($this->data).')</small>';
26 26
     }
27 27
 
28 28
     /**
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,9 @@
 block discarded – undo
35 35
     {
36 36
         $this->module->registerPanel($this);
37 37
 
38
-        if (!is_array($this->data))
39
-            $this->data = [];
38
+        if (!is_array($this->data)) {
39
+                    $this->data = [];
40
+        }
40 41
 
41 42
         if (isset($data['error'])) {
42 43
             $error = $this->module->exception($data['error']);
Please login to merge, or discard this patch.
src/panels/TrailPanel.php 3 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace bedezign\yii2\audit\panels;
4 4
 
5
+use Yii;
5 6
 use bedezign\yii2\audit\components\panels\Panel;
6 7
 use bedezign\yii2\audit\models\AuditTrail;
7 8
 use bedezign\yii2\audit\models\AuditTrailSearch;
8
-use Yii;
9 9
 use yii\grid\GridViewAsset;
10 10
 
11 11
 /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     public function getLabel()
37 37
     {
38
-        return $this->getName() . ' <small>(' . count($this->_model->trails) . ')</small>';
38
+        return $this->getName().' <small>('.count($this->_model->trails).')</small>';
39 39
     }
40 40
 
41 41
     /**
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,9 @@
 block discarded – undo
87 87
     public function cleanup($maxAge = null)
88 88
     {
89 89
         $maxAge = $maxAge !== null ? $maxAge : $this->maxAge;
90
-        if ($maxAge === null)
91
-            return false;
90
+        if ($maxAge === null) {
91
+                    return false;
92
+        }
92 93
         return AuditTrail::deleteAll([
93 94
             '<=', 'created', date('Y-m-d 23:59:59', strtotime("-$maxAge days"))
94 95
         ]);
Please login to merge, or discard this patch.
src/views/entry/panels/soap/detail.php 3 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /* @var $panel bedezign\yii2\audit\panels\SoapPanel */
3 3
 
4
-use yii\bootstrap\Tabs;
5
-use yii\helpers\Html;
6 4
 use bedezign\yii2\audit\components\Helper;
5
+use yii\bootstrap\Tabs;
7 6
 use yii\helpers\ArrayHelper;
7
+use yii\helpers\Html;
8 8
 use yii\helpers\VarDumper;
9 9
 
10 10
 $preformatted = ['class' => 'well', 'style' => 'overflow: auto; white-space: pre'];
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
     unset($request['result']);
39 39
 }
40 40
 
41
-$tabs[] = [ 'label' => \Yii::t('audit', 'Info'), 'content' => $this->render('info_table', ['request' => $request]), 'active' => true ];
41
+$tabs[] = ['label' => \Yii::t('audit', 'Info'), 'content' => $this->render('info_table', ['request' => $request]), 'active' => true];
42 42
 
43 43
 echo Html::tag('h2', \Yii::t('audit', 'Request #{id}', ['id' => $index])), Tabs::widget(['items' => array_reverse($tabs)]);
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,11 +24,12 @@
 block discarded – undo
24 24
 
25 25
 if (isset($request['result'])) {
26 26
     $xml = Helper::formatAsXML($request['result']);
27
-    if ($xml)
28
-        $tabs[] = [
27
+    if ($xml) {
28
+            $tabs[] = [
29 29
             'label' => \Yii::t('audit', 'Result - XML'),
30 30
             'content' => Html::tag('div', $xml, $preformatted)
31 31
         ];
32
+    }
32 33
 
33 34
     $tabs[] = [
34 35
         'label' => \Yii::t('audit', 'Result'),
Please login to merge, or discard this patch.