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

Commit

Permalink
Merge branch 'cs/various-things' of https://github.com/Maks3w/zf2
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 96 changed files with 21,964 additions and 21,964 deletions.
2 changes: 1 addition & 1 deletion src/Exception/UnexpectedValueException.php
Expand Up @@ -16,7 +16,7 @@
* @category Zend
* @package Zend_Barcode
*/
class UnexpectedValueException extends \UnexpectedValueException implements
class UnexpectedValueException extends \UnexpectedValueException implements
ExceptionInterface
{
}
4 changes: 2 additions & 2 deletions src/Object/Code128.php
Expand Up @@ -232,7 +232,7 @@ protected function convertToBarcodeChars($string)
$result[] = $code;
$currentCharset = 'C';
}
} else if (in_array($char, $this->charSets['B']) && $currentCharset != 'B'
} elseif (in_array($char, $this->charSets['B']) && $currentCharset != 'B'
&& !(in_array($char, $this->charSets['A']) && $currentCharset == 'A')) {
/**
* Switch to B as B contains the char and B is not the current charset.
Expand All @@ -244,7 +244,7 @@ protected function convertToBarcodeChars($string)
}
$result[] = $code;
$currentCharset = 'B';
} else if (array_key_exists($char, $this->charSets['A']) && $currentCharset != 'A'
} elseif (array_key_exists($char, $this->charSets['A']) && $currentCharset != 'A'
&& !(array_key_exists($char, $this->charSets['B']) && $currentCharset == 'B')) {
/**
* Switch to C as C contains the char and C is not the current charset.
Expand Down
2 changes: 1 addition & 1 deletion src/Object/Exception/InvalidArgumentException.php
Expand Up @@ -18,7 +18,7 @@
* @category Zend
* @package Zend_Barcode
*/
class InvalidArgumentException extends Exception\InvalidArgumentException implements
class InvalidArgumentException extends Exception\InvalidArgumentException implements
ExceptionInterface
{
}
2 changes: 1 addition & 1 deletion src/Object/Exception/OutOfRangeException.php
Expand Up @@ -18,7 +18,7 @@
* @category Zend
* @package Zend_Barcode
*/
class OutOfRangeException extends Exception\OutOfRangeException implements
class OutOfRangeException extends Exception\OutOfRangeException implements
ExceptionInterface
{
}
2 changes: 1 addition & 1 deletion src/Object/Exception/RuntimeException.php
Expand Up @@ -18,7 +18,7 @@
* @category Zend
* @package Zend_Barcode
*/
class RuntimeException extends Exception\RuntimeException implements
class RuntimeException extends Exception\RuntimeException implements
ExceptionInterface
{
}
8 changes: 4 additions & 4 deletions src/ObjectPluginManager.php
Expand Up @@ -16,7 +16,7 @@
* Plugin manager implementation for barcode parsers.
*
* Enforces that barcode parsers retrieved are instances of
* Object\AbstractObject. Additionally, it registers a number of default
* Object\AbstractObject. Additionally, it registers a number of default
* barcode parsers.
*
* @category Zend
Expand All @@ -26,7 +26,7 @@ class ObjectPluginManager extends AbstractPluginManager
{
/**
* Default set of barcode parsers
*
*
* @var array
*/
protected $invokableClasses = array(
Expand Down Expand Up @@ -55,8 +55,8 @@ class ObjectPluginManager extends AbstractPluginManager
*
* Checks that the barcode parser loaded is an instance
* of Object\AbstractObject.
*
* @param mixed $plugin
*
* @param mixed $plugin
* @return void
* @throws Exception\InvalidArgumentException if invalid
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Renderer/Exception/InvalidArgumentException.php
Expand Up @@ -18,7 +18,7 @@
* @category Zend
* @package Zend_Barcode
*/
class InvalidArgumentException extends Exception\InvalidArgumentException implements
class InvalidArgumentException extends Exception\InvalidArgumentException implements
ExceptionInterface
{
}
2 changes: 1 addition & 1 deletion src/Renderer/Exception/OutOfRangeException.php
Expand Up @@ -18,7 +18,7 @@
* @category Zend
* @package Zend_Barcode
*/
class OutOfRangeException extends Exception\OutOfRangeException implements
class OutOfRangeException extends Exception\OutOfRangeException implements
ExceptionInterface
{
}
2 changes: 1 addition & 1 deletion src/Renderer/Exception/RuntimeException.php
Expand Up @@ -18,7 +18,7 @@
* @category Zend
* @package Zend_Barcode
*/
class RuntimeException extends Exception\RuntimeException implements
class RuntimeException extends Exception\RuntimeException implements
ExceptionInterface
{
}
2 changes: 1 addition & 1 deletion src/Renderer/Exception/UnexpectedValueException.php
Expand Up @@ -18,7 +18,7 @@
* @category Zend
* @package Zend_Barcode
*/
class UnexpectedValueException extends Exception\UnexpectedValueException implements
class UnexpectedValueException extends Exception\UnexpectedValueException implements
ExceptionInterface
{
}
8 changes: 4 additions & 4 deletions src/RendererPluginManager.php
Expand Up @@ -16,7 +16,7 @@
* Plugin manager implementation for barcode renderers.
*
* Enforces that barcode parsers retrieved are instances of
* Renderer\AbstractRenderer. Additionally, it registers a number of default
* Renderer\AbstractRenderer. Additionally, it registers a number of default
* barcode renderers.
*
* @category Zend
Expand All @@ -26,7 +26,7 @@ class RendererPluginManager extends AbstractPluginManager
{
/**
* Default set of barcode renderers
*
*
* @var array
*/
protected $invokableClasses = array(
Expand All @@ -40,8 +40,8 @@ class RendererPluginManager extends AbstractPluginManager
*
* Checks that the barcode parser loaded is an instance
* of Renderer\AbstractRenderer.
*
* @param mixed $plugin
*
* @param mixed $plugin
* @return void
* @throws Exception\InvalidArgumentException if invalid
*/
Expand Down

0 comments on commit e5066db

Please sign in to comment.