Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
fix docblocks : Zend_ should be Zend\
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed May 23, 2013
1 parent 7275cf1 commit 0f23eef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Figlet/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\Text\Exception;

/**
* Exception class for Zend_Text
* Exception class for Zend\Text
*/
class InvalidArgumentException
extends Exception\InvalidArgumentException
Expand Down
2 changes: 1 addition & 1 deletion src/Figlet/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\Text\Exception;

/**
* Exception class for Zend_Text
* Exception class for Zend\Text
*/
class RuntimeException
extends Exception\RuntimeException
Expand Down
2 changes: 1 addition & 1 deletion src/Figlet/Exception/UnexpectedValueException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\Text\Exception;

/**
* Exception class for Zend_Text
* Exception class for Zend\Text
*/
class UnexpectedValueException
extends Exception\UnexpectedValueException
Expand Down
2 changes: 1 addition & 1 deletion src/Figlet/Figlet.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class Figlet
* Instantiate the FIGlet with a specific font. If no font is given, the
* standard font is used. You can also supply multiple options via
* the $options variable, which can either be an array or an instance of
* Zend_Config.
* Zend\Config\Config.
*
* @param array|Traversable $options Options for the output
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Table/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public static function getOutputCharset()
* Append a row to the table
*
* @param array|Row $row The row to append to the table
* @throws Exception\InvalidArgumentException When $row is neither an array nor Zend_Zext_Table_Row
* @throws Exception\InvalidArgumentException When $row is neither an array nor Zend\Text\Table\Row
* @throws Exception\OverflowException When a row contains too many columns
* @return Table
*/
Expand Down

0 comments on commit 0f23eef

Please sign in to comment.