Passed
Push — feature/multi-log ( 6b18be )
by Todd
43s
created
src/Cli.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -680,7 +680,7 @@
 block discarded – undo
680 680
      * Gets/sets the value for a current meta item.
681 681
      *
682 682
      * @param string $name The name of the meta key.
683
-     * @param mixed $value Set a new value for the meta key.
683
+     * @param string|null $value Set a new value for the meta key.
684 684
      * @return $this|mixed Returns the current value of the meta item or `$this` for fluent setting.
685 685
      */
686 686
     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
109 109
      */
110 110
     protected function addCell($text, $wrap = ['', '']) {
Please login to merge, or discard this patch.