fix class namespace by @insekticid and doc block fix

This commit is contained in:
Luis Cordova 2014-03-17 07:23:37 -07:00
parent 48c9985e73
commit 89bde6e03b

View File

@ -167,7 +167,7 @@ class Table
} }
if (!is_array($row)) { if (!is_array($row)) {
throw new InvalidArgumentException('A row must be an array or a TableSeparator instance.'); throw new \InvalidArgumentException('A row must be an array or a TableSeparator instance.');
} }
$this->rows[] = array_values($row); $this->rows[] = array_values($row);
@ -216,8 +216,6 @@ class Table
* | 9971-5-0210-0 | A Tale of Two Cities | Charles Dickens | * | 9971-5-0210-0 | A Tale of Two Cities | Charles Dickens |
* | 960-425-059-0 | The Lord of the Rings | J. R. R. Tolkien | * | 960-425-059-0 | The Lord of the Rings | J. R. R. Tolkien |
* +---------------+-----------------------+------------------+ * +---------------+-----------------------+------------------+
*
* @param OutputInterface $output
*/ */
public function render() public function render()
{ {