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.
Test Failed
Push — master ( 8bca22...568bf9 )
by Gabriel
13:02 queued 05:02
created
src/Records/Record.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param $action
64
+     * @param string $action
65 65
      * @param array $params
66 66
      * @param null $module
67 67
      * @return mixed
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     }
123 123
 
124 124
     /**
125
-     * @return mixed
125
+     * @return string
126 126
      */
127 127
     public function getName()
128 128
     {
Please login to merge, or discard this patch.
src/Records/Traits/AbstractTrait/RecordsTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     abstract public function newQuery($type = 'select');
27 27
 
28 28
     /**
29
-     * @param $query
29
+     * @param AbstractQuery $query
30 30
      * @param array $params
31 31
      * @return RecordTrait
32 32
      */
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     abstract public function getModelNamespace();
59 59
 
60 60
     /**
61
-     * @param $name
61
+     * @param string $name
62 62
      * @param array $params
63 63
      * @return mixed
64 64
      */
Please login to merge, or discard this patch.
src/Records/Traits/HasSmartProperties/RecordTrait.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     protected $smartProperties = [];
25 25
 
26 26
     /**
27
-     * @param $name
27
+     * @param string $name
28 28
      * @return PropertyValue
29 29
      */
30 30
     public function getSmartProperty($name)
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @param $name
110
-     * @param $value
111
-     * @return bool|void
109
+     * @param string $name
110
+     * @param boolean $value
111
+     * @return null|false
112 112
      */
113 113
     public function updateSmartProperty($name, $value)
114 114
     {
Please login to merge, or discard this patch.
src/Records/Traits/HasTypes/RecordsTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      *
105 105
      * @param string $path
106 106
      *
107
-     * @return mixed
107
+     * @return string
108 108
      */
109 109
     protected function generateTypeNameFromPath($path)
110 110
     {
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     }
154 154
 
155 155
     /**
156
-     * @param null $type
156
+     * @param string|null $type
157 157
      * @return string
158 158
      */
159 159
     public function getTypeClass($type = null)
Please login to merge, or discard this patch.
src/Records/Traits/HasTypes/RecordTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @param $type
43
+     * @param string $type
44 44
      * @return mixed
45 45
      */
46 46
     public function getNewType($type)
Please login to merge, or discard this patch.
src/Records/Traits/I18n/RecordsTrait.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     protected $translator = null;
18 18
 
19 19
     /**
20
-     * @param $type
20
+     * @param string $type
21 21
      * @param array $params
22 22
      * @param bool $language
23 23
      * @return string
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @param $slug
33
+     * @param string $slug
34 34
      * @param array $params
35 35
      * @param bool $language
36 36
      * @return string
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @param $name
79
+     * @param string $name
80 80
      * @param array $params
81 81
      * @param bool $language
82 82
      * @return string
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function getLabel($type, $params = [], $language = false)
26 26
     {
27
-        $slug = 'labels.'.$type;
27
+        $slug = 'labels.' . $type;
28 28
 
29 29
         return $this->translate($slug, $params, $language);
30 30
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function translate($slug, $params = [], $language = false)
39 39
     {
40
-        $slug = $this->getController().'.'.$slug;
40
+        $slug = $this->getController() . '.' . $slug;
41 41
 
42 42
         return $this->getTranslator()->translate($slug, $params, $language);
43 43
     }
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      */
84 84
     public function getMessage($name, $params = [], $language = false)
85 85
     {
86
-        $slug = 'messages.'.$name;
86
+        $slug = 'messages.' . $name;
87 87
 
88 88
         return $this->translate($slug, $params, $language);
89 89
     }
Please login to merge, or discard this patch.
src/Records/Traits/Media/Covers/RecordTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Uploads cover to temporary directory
62 62
      *
63
-     * @return mixed
63
+     * @return \Organization_Cover_Default|null
64 64
      */
65 65
     public function uploadCoverAutoCrop($file)
66 66
     {
Please login to merge, or discard this patch.
src/Records/Traits/Media/Logos/RecordTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
 
191 191
     /**
192 192
      * @param $request
193
-     * @return $this|void
193
+     * @return LogoModel
194 194
      */
195 195
     public function removeLogo($request)
196 196
     {
Please login to merge, or discard this patch.
src/Records/Traits/PersistentCurrent.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     /**
150 150
      * Persist record
151 151
      *
152
-     * @param Record|boolean $item record to be persisted
152
+     * @param Record $item record to be persisted
153 153
      *
154 154
      * @return $this
155 155
      */
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     /**
181 181
      * Returns current default Persisted Record
182 182
      *
183
-     * @return bool|mixed
183
+     * @return boolean
184 184
      */
185 185
     public function getCurrentDefault()
186 186
     {
Please login to merge, or discard this patch.