@@ -42,7 +42,6 @@ |
||
| 42 | 42 | /** |
| 43 | 43 | * PresenterAware interface. |
| 44 | 44 | * |
| 45 | - * @param Presenter $manager |
|
| 46 | 45 | */ |
| 47 | 46 | public function setPresenter(Presenter $presenter) |
| 48 | 47 | { |
@@ -54,7 +54,7 @@ |
||
| 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 | */ |
@@ -50,7 +50,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | { |
@@ -80,7 +80,7 @@ |
||
| 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 | { |
@@ -87,7 +87,7 @@ |
||
| 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 | */ |
@@ -527,7 +527,7 @@ |
||
| 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 | */ |
@@ -116,7 +116,7 @@ |
||
| 116 | 116 | /** |
| 117 | 117 | * `psysh` command line executable. |
| 118 | 118 | * |
| 119 | - * @return Closure |
|
| 119 | + * @return \Closure |
|
| 120 | 120 | */ |
| 121 | 121 | function bin() |
| 122 | 122 | { |
@@ -84,6 +84,7 @@ |
||
| 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 | { |
@@ -38,6 +38,7 @@ |
||
| 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 | { |