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 37 changed files with 0 additions and 203 deletions.
6 changes: 0 additions & 6 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Exception;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Exception
*/
interface ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,10 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Exception;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Exception
*/
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/OutOfBoundsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,10 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Exception;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Exception
*/
class OutOfBoundsException extends \OutOfBoundsException implements
ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/ParseException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Exception;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Exception
*/
class ParseException extends RuntimeException implements ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/RangeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Exception;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Exception
*/
class RangeException extends \RangeException implements ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Exception;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Exception
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Filter/AbstractLocale.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,13 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Filter;

use Locale;
use Zend\Filter\AbstractFilter;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Filter
*/
abstract class AbstractLocale extends AbstractFilter
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Filter/Alnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,13 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Filter;

use Locale;
use Traversable;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Filter
*/
class Alnum extends AbstractLocale
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Filter/Alpha.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Filter;

use Locale;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Filter
*/
class Alpha extends Alnum
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Filter/NumberFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Filter;
Expand All @@ -15,11 +14,6 @@
use Zend\I18n\Exception;
use Zend\Stdlib\ErrorHandler;

/**
* @category Zend
* @package Zend_I18n
* @subpackage Filter
*/
class NumberFormat extends AbstractLocale
{
protected $options = array(
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Loader/FileLoaderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Loader;

/**
* File loader interface.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
interface FileLoaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Loader/Gettext.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Loader;
Expand All @@ -17,10 +16,6 @@

/**
* Gettext loader.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class Gettext implements FileLoaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Loader/Ini.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Loader;
Expand All @@ -17,10 +16,6 @@

/**
* PHP INI format loader.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class Ini implements FileLoaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Loader/PhpArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Loader;
Expand All @@ -16,10 +15,6 @@

/**
* PHP array loader.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class PhpArray implements FileLoaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Loader/RemoteLoaderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Loader;

/**
* Remote loader interface.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
interface RemoteLoaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/LoaderPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator;
Expand All @@ -19,10 +18,6 @@
* Enforces that loaders retrieved are either instances of
* Loader\FileLoaderInterface or Loader\RemoteLoaderInterface. Additionally,
* it registers a number of default loaders.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class LoaderPluginManager extends AbstractPluginManager
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Plural/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Plural;
Expand All @@ -17,10 +16,6 @@
*
* This plural rule parser is implemented after the article "Top Down Operator
* Precedence" described in <http://javascript.crockford.com/tdop/tdop.html>.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class Parser
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Plural/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Plural;
Expand All @@ -14,10 +13,6 @@

/**
* Plural rule evaluator.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class Rule
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Plural/Symbol.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator\Plural;
Expand All @@ -20,10 +19,6 @@
* access from the applied closures. An exception are the closure properties
* themselves, as they have to be accessed via the appropriate getter and
* setter methods.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class Symbol
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/TextDomain.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator;
Expand All @@ -15,10 +14,6 @@

/**
* Text domain.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class TextDomain extends ArrayObject
{
Expand Down
5 changes: 0 additions & 5 deletions src/Translator/Translator.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_I18n
*/

namespace Zend\I18n\Translator;
Expand All @@ -21,10 +20,6 @@

/**
* Translator.
*
* @category Zend
* @package Zend_I18n
* @subpackage Translator
*/
class Translator
{
Expand Down
Loading

0 comments on commit b92a5da

Please sign in to comment.