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

Commit

Permalink
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Zend\Stdlib\ArrayUtils;

/**
* Abstract class for Zend_ProgressBar_Adapters
* Abstract class for Zend\ProgressBar Adapters
*/
abstract class AbstractAdapter
{
Expand All @@ -30,7 +30,7 @@ abstract class AbstractAdapter
/**
* Create a new adapter
*
* $options may be either be an array or a Zend_Config object which
* $options may be either be an array or a Zend\Config object which
* specifies adapter related options.
*
* @param array|Traversable $options
Expand Down
4 changes: 2 additions & 2 deletions src/Adapter/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Zend\Stdlib\StringUtils;

/**
* Zend_ProgressBar_Adapter_Console offers a text-based progressbar for console
* Zend\ProgressBar\Adapter\Console offers a text-based progressbar for console
* applications
*/
class Console extends AbstractAdapter
Expand Down Expand Up @@ -136,7 +136,7 @@ class Console extends AbstractAdapter
protected $charset = 'utf-8';

/**
* Defined by Zend_ProgressBar_Adapter
* Defined by Zend\ProgressBar adapter
*
* @param array|\Traversable $options
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\ProgressBar\Exception\ExceptionInterface as ProgressBarException;

/**
* Exception class for Zend_ProgressBar_Adapter
* Exception class for Zend\ProgressBar\Adapter
*/
interface ExceptionInterface extends ProgressBarException
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\ProgressBar\Exception;

/**
* Exception for Zend_Progressbar component.
* Exception for Zend\Progressbar component.
*/
class InvalidArgumentException extends Exception\InvalidArgumentException implements
ExceptionInterface
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\ProgressBar\Exception;

/**
* Exception for Zend_Progressbar component.
* Exception for Zend\Progressbar component.
*/
class RuntimeException extends Exception\RuntimeException implements
ExceptionInterface
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/JsPull.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\Json\Json;

/**
* Zend_ProgressBar_Adapter_JsPull offers a simple method for updating a
* Zend\ProgressBar\Adapter\JsPull offers a simple method for updating a
* progressbar in a browser.
*/
class JsPull extends AbstractAdapter
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/JsPush.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Zend\Json\Json;

/**
* Zend_ProgressBar_Adapter_JsPush offers a simple method for updating a
* Zend\ProgressBar\Adapter\JsPush offers a simple method for updating a
* progressbar in a browser.
*/
class JsPush extends AbstractAdapter
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Zend\ProgressBar\Exception;

/**
* Exception class for Zend_ProgressBar
* Exception class for Zend\ProgressBar
*/
interface ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Zend\ProgressBar\Exception;

/**
* Exception for Zend_Progressbar component.
* Exception for Zend\Progressbar component.
*/
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/OutOfRangeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Zend\ProgressBar\Exception;

/**
* Exception for Zend_Progressbar component.
* Exception for Zend\Progressbar component.
*/
class OutOfRangeException extends \OutOfRangeException implements ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Zend\ProgressBar\Exception;

/**
* Exception for Zend_Progressbar component.
* Exception for Zend\Progressbar component.
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{}
2 changes: 1 addition & 1 deletion src/ProgressBar.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Zend\Session;

/**
* Zend_ProgressBar offers an interface for multiple environments.
* Zend\ProgressBar offers an interface for multiple environments.
*/
class ProgressBar
{
Expand Down

0 comments on commit 9d3ec66

Please sign in to comment.