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 ( 336670...655c23 )
by
unknown
12:22
created
app/Console/Commands/ThemeMakeCommand.php 1 patch
Doc Comments   +23 added lines, -20 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * Execute the console command.
53 53
      *
54
-     * @return bool|null
54
+     * @return false|null
55 55
      */
56 56
     public function fire()
57 57
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * makeDirectory
98 98
      *
99
-     * @param $path
99
+     * @param string $path
100 100
      *
101 101
      * @return void
102 102
      */
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      * replaceCode
150 150
      *
151 151
      * @param $stub
152
-     * @param $search
152
+     * @param string $search
153 153
      * @param $replace
154 154
      *
155 155
      * @return $this
@@ -163,6 +163,7 @@  discard block
 block discarded – undo
163 163
     /**
164 164
      * Get the stub file for the generator.
165 165
      *
166
+     * @param string $filename
166 167
      * @return string
167 168
      */
168 169
     protected function getStub($filename)
@@ -278,7 +279,7 @@  discard block
 block discarded – undo
278 279
     /**
279 280
      * getTemplatePath
280 281
      *
281
-     * @param $id
282
+     * @param string $id
282 283
      * @param $plugin
283 284
      *
284 285
      * @return string
@@ -318,15 +319,15 @@  discard block
 block discarded – undo
318 319
      * confirmInfo
319 320
      *
320 321
      * @param $file
321
-     * @param $class
322
+     * @param string $class
322 323
      * @param $plugin
323 324
      * @param $id
324 325
      * @param $title
325 326
      * @param $description
326
-     * @param $template
327
-     * @param $css
327
+     * @param string $template
328
+     * @param string $css
328 329
      *
329
-     * @return bool
330
+     * @return boolean|null
330 331
      */
331 332
     protected function confirmInfo($file, $class, $plugin, $id, $title, $description, $template, $css)
332 333
     {
@@ -356,7 +357,7 @@  discard block
 block discarded – undo
356 357
     /**
357 358
      * getThemeClass
358 359
      *
359
-     * @return array
360
+     * @return string[]
360 361
      */
361 362
     protected function getThemeClass()
362 363
     {
@@ -368,10 +369,12 @@  discard block
 block discarded – undo
368 369
      * makeThemeClass
369 370
      *
370 371
      * @param $file
371
-     * @param $namespace
372
-     * @param $class
372
+     * @param string $namespace
373
+     * @param string $class
373 374
      * @param $plugin
374
-     * @param $template
375
+     * @param string $template
376
+     * @param string $templateView
377
+     * @param string $css
375 378
      *
376 379
      * @return void
377 380
      * @throws \Exception
@@ -396,7 +399,7 @@  discard block
 block discarded – undo
396 399
      * @param $class
397 400
      * @param $m
398 401
      *
399
-     * @return array
402
+     * @return string[]
400 403
      */
401 404
     protected function parseClassName($class)
402 405
     {
@@ -412,7 +415,7 @@  discard block
 block discarded – undo
412 415
     /**
413 416
      * formatJson
414 417
      *
415
-     * @param      $json
418
+     * @param      string $json
416 419
      * @param bool $unescapeUnicode
417 420
      * @param bool $unescapeSlashes
418 421
      *
@@ -513,8 +516,8 @@  discard block
 block discarded – undo
513 516
      * registerTheme
514 517
      *
515 518
      * @param $plugin
516
-     * @param $id
517
-     * @param $class
519
+     * @param string $id
520
+     * @param string $class
518 521
      * @param $title
519 522
      * @param $description
520 523
      *
@@ -547,7 +550,7 @@  discard block
 block discarded – undo
547 550
      * makeTemplate
548 551
      *
549 552
      * @param $plugin
550
-     * @param $template
553
+     * @param string $template
551 554
      *
552 555
      * @return bool
553 556
      */
@@ -563,7 +566,7 @@  discard block
 block discarded – undo
563 566
      * makeCss
564 567
      *
565 568
      * @param $plugin
566
-     * @param $css
569
+     * @param string $css
567 570
      *
568 571
      * @return bool
569 572
      */
@@ -580,8 +583,8 @@  discard block
 block discarded – undo
580 583
      *
581 584
      * @param $file
582 585
      * @param $plugin
583
-     * @param $template
584
-     * @param $css
586
+     * @param string $template
587
+     * @param string $css
585 588
      *
586 589
      * @return void
587 590
      */
Please login to merge, or discard this patch.