From 89bde6e03bd38817c2dda1da18ba80e483b5cbb2 Mon Sep 17 00:00:00 2001 From: Luis Cordova Date: Mon, 17 Mar 2014 07:23:37 -0700 Subject: [PATCH] fix class namespace by @insekticid and doc block fix --- src/Symfony/Component/Console/Helper/Table.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Symfony/Component/Console/Helper/Table.php b/src/Symfony/Component/Console/Helper/Table.php index 038eab0ec1885..2548d8e57a90a 100644 --- a/src/Symfony/Component/Console/Helper/Table.php +++ b/src/Symfony/Component/Console/Helper/Table.php @@ -167,7 +167,7 @@ public function addRow($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); @@ -216,8 +216,6 @@ public function setRow($column, array $row) * | 9971-5-0210-0 | A Tale of Two Cities | Charles Dickens | * | 960-425-059-0 | The Lord of the Rings | J. R. R. Tolkien | * +---------------+-----------------------+------------------+ - * - * @param OutputInterface $output */ public function render() {