Completed
Pull Request — master (#114)
by Deven
15:41
created
vendor/psy/psysh/src/Psy/Command/ListCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,6 @@
 block discarded – undo
42 42
     /**
43 43
      * PresenterAware interface.
44 44
      *
45
-     * @param Presenter $manager
46 45
      */
47 46
     public function setPresenter(Presenter $presenter)
48 47
     {
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Command/ListCommand/ClassEnumerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     /**
55 55
      * Prepare formatted class array.
56 56
      *
57
-     * @param array $class
57
+     * @param array $classes
58 58
      *
59 59
      * @return array
60 60
      */
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Command/ListCommand/Enumerator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * Return a list of categorized things with the given input options and target.
51 51
      *
52 52
      * @param InputInterface $input
53
-     * @param Reflector      $reflector
53
+     * @param \Reflector      $reflector
54 54
      * @param mixed          $target
55 55
      *
56 56
      * @return array
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      *     ]
79 79
      *
80 80
      * @param InputInterface $input
81
-     * @param Reflector      $reflector
81
+     * @param \Reflector      $reflector
82 82
      * @param mixed          $target
83 83
      *
84 84
      * @return array
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      *
122 122
      * @param string $pattern
123 123
      *
124
-     * @return bool
124
+     * @return boolean|null
125 125
      */
126 126
     private function validateRegex($pattern)
127 127
     {
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Command/ListCommand/PropertyEnumerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      *
81 81
      * @param array $properties
82 82
      *
83
-     * @return array
83
+     * @return \ReflectionClass
84 84
      */
85 85
     protected function prepareProperties(array $properties, $target = null)
86 86
     {
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Compiler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     /**
88 88
      * Add a file to the psysh Phar.
89 89
      *
90
-     * @param Phar        $phar
90
+     * @param \Phar        $phar
91 91
      * @param SplFileInfo $file
92 92
      * @param bool        $strip (default: true)
93 93
      */
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Configuration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -527,7 +527,7 @@
 block discarded – undo
527 527
      * The pipe will be created inside the current temporary directory.
528 528
      *
529 529
      * @param string $type
530
-     * @param id     $pid
530
+     * @param integer     $pid
531 531
      *
532 532
      * @return string Pipe name
533 533
      */
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/functions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
     /**
117 117
      * `psysh` command line executable.
118 118
      *
119
-     * @return Closure
119
+     * @return \Closure
120 120
      */
121 121
     function bin()
122 122
     {
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Output/ProcOutputPager.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -84,6 +84,7 @@
 block discarded – undo
84 84
      * Get a pipe for paging output.
85 85
      *
86 86
      * If no active pager process exists, fork one and return its input pipe.
87
+     * @return resource
87 88
      */
88 89
     private function getPipe()
89 90
     {
Please login to merge, or discard this patch.
vendor/psy/psysh/src/Psy/Readline/GNUReadline.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * GNU Readline constructor.
41
+     * @param string $historyFile
41 42
      */
42 43
     public function __construct($historyFile = null, $historySize = 0, $eraseDups = false)
43 44
     {
Please login to merge, or discard this patch.