Completed
Push — master ( 91d599...412a7f )
by Lincoln
21s
created
src/Cli.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -661,7 +661,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Table.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 = ['', '']) {
Please login to merge, or discard this patch.