Completed
Pull Request — master (#592)
by Markus
129:05 queued 64:04
created
src/Whoops/Handler/PrettyPageHandler.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
      * @throws InvalidArgumentException If editor resolver does not return a string
432 432
      * @param  string                   $filePath
433 433
      * @param  int                      $line
434
-     * @return string|bool
434
+     * @return false|string
435 435
      */
436 436
     public function getEditorHref($filePath, $line)
437 437
     {
@@ -678,8 +678,8 @@  discard block
 block discarded – undo
678 678
     /**
679 679
      * blacklist a sensitive value within one of the superglobal arrays.
680 680
      *
681
-     * @param $superGlobalName string the name of the superglobal array, e.g. '_GET'
682
-     * @param $key string the key within the superglobal
681
+     * @param string $superGlobalName string the name of the superglobal array, e.g. '_GET'
682
+     * @param string $key string the key within the superglobal
683 683
      */
684 684
     public function blacklist($superGlobalName, $key)
685 685
     {
@@ -693,7 +693,7 @@  discard block
 block discarded – undo
693 693
      * We intentionally dont rely on $GLOBALS as it depends on 'auto_globals_jit' php.ini setting.
694 694
      *
695 695
      * @param $superGlobal array One of the superglobal arrays
696
-     * @param $superGlobalName string the name of the superglobal array, e.g. '_GET'
696
+     * @param string $superGlobalName string the name of the superglobal array, e.g. '_GET'
697 697
      * @return array $values without sensitive data
698 698
      */
699 699
     private function masked(array $superGlobal, $superGlobalName)
Please login to merge, or discard this patch.