8000 fix doc block and namespace by @insekticide by cordoval · Pull Request #10469 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

fix doc block and namespace by @insekticide #10469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix class namespace by @insekticid and doc block fix
  • Loading branch information
cordoval committed Mar 17, 2014
commit 89bde6e03bd38817c2dda1da18ba80e483b5cbb2
4 changes: 1 addition & 3 deletions src/Symfony/Component/Console/Helper/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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()
{
Expand Down
0