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 ( 74e5af...d5acd7 )
by Miles
03:18
created
src/Resource/ResourceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,6 @@
 block discarded – undo
183 183
     /**
184 184
      * Merges various configuration contents into one array
185 185
      *
186
-     * @param mixed $contents,... Optional number of arrays to merge
187 186
      *
188 187
      * @return array The merged contents
189 188
      */
Please login to merge, or discard this patch.
src/Loader/DirectoryLoader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Returns the supported files in the directory recursively
60 60
      *
61
-     * @return array The supported files in the directories
61
+     * @return \RegexIterator The supported files in the directories
62 62
      */
63 63
     private function getSupportedFilesRecursively()
64 64
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Returns the supported files in the directory
78 78
      *
79
-     * @return array The supported files in the directory
79
+     * @return \RegexIterator The supported files in the directory
80 80
      */
81 81
     private function getSupportedFiles()
82 82
     {
Please login to merge, or discard this patch.
src/Resource/FileResource.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      *
248 248
      * @param array|string $import The import to create a resource from
249 249
      *
250
-     * @return array|\M1\Vars\Resource\ResourceProvider The resource of the import
250
+     * @return ResourceProvider The resource of the import
251 251
      */
252 252
     private function createResource($import)
253 253
     {
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
     /**
339 339
      * Returns the filename of the resource
340 340
      *
341
-     * @return mixed The filename
341
+     * @return string The filename
342 342
      */
343 343
     public function getFilename()
344 344
     {
Please login to merge, or discard this patch.
src/Traits/TransformerTrait.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,6 @@
 block discarded – undo
18 18
 
19 19
 namespace M1\Vars\Traits;
20 20
 
21
-use M1\Vars\Resource\InternalVariableResource;
22
-
23 21
 /**
24 22
  * Vars transformer class for to*() functions
25 23
  *
Please login to merge, or discard this patch.
src/Vars.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@
 block discarded – undo
318 318
     /**
319 319
      * Returns the CacheProvider if set, if not return false
320 320
      *
321
-     * @return \M1\Vars\Cache\CacheProvider|false The CacheProvider or false
321
+     * @return CacheProvider The CacheProvider or false
322 322
      */
323 323
     public function getCache()
324 324
     {
Please login to merge, or discard this patch.