@@ -661,7 +661,7 @@ |
||
661 | 661 | * Gets/sets the value for a current meta item. |
662 | 662 | * |
663 | 663 | * @param string $name The name of the meta key. |
664 | - * @param mixed $value Set a new value for the meta key. |
|
664 | + * @param string|null $value Set a new value for the meta key. |
|
665 | 665 | * @return Cli|mixed Returns the current value of the meta item or `$this` for fluent setting. |
666 | 666 | */ |
667 | 667 | public function meta($name, $value = null) { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * Set whether or not output should be formatted. |
94 | 94 | * |
95 | 95 | * @param boolean $formatOutput Whether or not to format output. |
96 | - * @return LogFormatter Returns `$this` for fluent calls. |
|
96 | + * @return Table Returns `$this` for fluent calls. |
|
97 | 97 | */ |
98 | 98 | public function setFormatOutput($formatOutput) { |
99 | 99 | $this->formatOutput = $formatOutput; |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * Add a cell to the table. |
105 | 105 | * |
106 | 106 | * @param string $text The text of the cell. |
107 | - * @param array $wrap A two element array used to wrap the text in the cell. |
|
107 | + * @param string[] $wrap A two element array used to wrap the text in the cell. |
|
108 | 108 | * @return $this Returns this object for fluent calls. |
109 | 109 | */ |
110 | 110 | protected function addCell($text, $wrap = ['', '']) { |