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

Commit

Permalink
Merge branch 'feature/docblock-simplification' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 24 changed files with 0 additions and 136 deletions.
4 changes: 0 additions & 4 deletions src/Config.php
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_Config
*/

namespace Zend\Config;
Expand All @@ -21,9 +20,6 @@
*
* Implements Countable, Iterator and ArrayAccess
* to facilitate easy access to the data.
*
* @category Zend
* @package Zend_Config
*/
class Config implements Countable, Iterator, ArrayAccess
{
Expand Down
6 changes: 0 additions & 6 deletions src/Exception/ExceptionInterface.php
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_Config
*/

namespace Zend\Config\Exception;

/**
* @category Zend
* @package Zend_Config
* @subpackage Exception
*/
interface ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/InvalidArgumentException.php
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_Config
*/

namespace Zend\Config\Exception;

/**
* @category Zend
* @package Zend_Config
* @subpackage Exception
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/RuntimeException.php
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_Config
*/

namespace Zend\Config\Exception;

/**
* @category Zend
* @package Zend_Config
* @subpackage Exception
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{}
5 changes: 0 additions & 5 deletions src/Factory.php
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_Config
*/

namespace Zend\Config;

use Zend\Stdlib\ArrayUtils;

/**
* @category Zend
* @package Zend_Config
*/
class Factory
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Processor/Constant.php
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_Config
*/

namespace Zend\Config\Processor;

/**
* @category Zend
* @package Zend_Config
* @subpackage Processor
*/
class Constant extends Token implements ProcessorInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Processor/Filter.php
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_Config
*/

namespace Zend\Config\Processor;
Expand All @@ -14,11 +13,6 @@
use Zend\Config\Exception;
use Zend\Filter\FilterInterface as ZendFilter;

/**
* @category Zend
* @package Zend_Config
* @subpackage Processor
*/
class Filter implements ProcessorInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Processor/ProcessorInterface.php
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_Config
*/

namespace Zend\Config\Processor;

use Zend\Config\Config;

/**
* @category Zend
* @package Zend_Config
* @subpackage Processor
*/
interface ProcessorInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Processor/Queue.php
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_Config
*/

namespace Zend\Config\Processor;
Expand All @@ -14,11 +13,6 @@
use Zend\Config\Exception;
use Zend\Stdlib\PriorityQueue;

/**
* @category Zend
* @package Zend_Config
* @subpackage Processor
*/
class Queue extends PriorityQueue implements ProcessorInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Processor/Token.php
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_Config
*/

namespace Zend\Config\Processor;
Expand All @@ -14,11 +13,6 @@
use Zend\Config\Config;
use Zend\Config\Exception;

/**
* @category Zend
* @package Zend_Config
* @subpackage Processor
*/
class Token implements ProcessorInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Processor/Translator.php
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_Config
*/

namespace Zend\Config\Processor;
Expand All @@ -14,11 +13,6 @@
use Zend\Config\Exception;
use Zend\I18n\Translator\Translator as ZendTranslator;

/**
* @category Zend
* @package Zend_Config
* @subpackage Processor
*/
class Translator implements ProcessorInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/Reader/Ini.php
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_Config
*/

namespace Zend\Config\Reader;
Expand All @@ -14,10 +13,6 @@

/**
* XML config reader.
*
* @category Zend
* @package Zend_Config
* @subpackage Reader
*/
class Ini implements ReaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Reader/Json.php
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_Config
*/

namespace Zend\Config\Reader;
Expand All @@ -16,10 +15,6 @@

/**
* JSON config reader.
*
* @category Zend
* @package Zend_Config
* @subpackage Reader
*/
class Json implements ReaderInterface
{
Expand Down
6 changes: 0 additions & 6 deletions src/Reader/ReaderInterface.php
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_Config
*/

namespace Zend\Config\Reader;

/**
* @category Zend
* @package Zend_Config
* @subpackage Reader
*/
interface ReaderInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/Reader/Xml.php
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_Config
*/

namespace Zend\Config\Reader;
Expand All @@ -15,10 +14,6 @@

/**
* XML config reader.
*
* @category Zend
* @package Zend_Config
* @subpackage Reader
*/
class Xml implements ReaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Reader/Yaml.php
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_Config
*/

namespace Zend\Config\Reader;
Expand All @@ -14,10 +13,6 @@

/**
* YAML config reader.
*
* @category Zend
* @package Zend_Config
* @subpackage Reader
*/
class Yaml implements ReaderInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/ReaderPluginManager.php
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_Config
*/

namespace Zend\Config;

use Zend\ServiceManager\AbstractPluginManager;

/**
* @category Zend
* @package Zend_Config
*/
class ReaderPluginManager extends AbstractPluginManager
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Writer/AbstractWriter.php
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_Config
*/

namespace Zend\Config\Writer;
Expand All @@ -14,11 +13,6 @@
use Zend\Config\Exception;
use Zend\Stdlib\ArrayUtils;

/**
* @category Zend
* @package Zend_Config
* @subpackage Writer
*/
abstract class AbstractWriter implements WriterInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Writer/Ini.php
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_Config
*/

namespace Zend\Config\Writer;

use Zend\Config\Exception;

/**
* @category Zend
* @package Zend_Config
* @subpackage Writer
*/
class Ini extends AbstractWriter
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Writer/Json.php
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_Config
*/

namespace Zend\Config\Writer;

use Zend\Json\Json as JsonFormat;

/**
* @category Zend
* @package Zend_Config
* @subpackage Writer
*/
class Json extends AbstractWriter
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Writer/PhpArray.php
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_Config
*/

namespace Zend\Config\Writer;

/**
* @category Zend
* @package Zend_Config
* @subpackage Writer
*/
class PhpArray extends AbstractWriter
{
/**
Expand Down

0 comments on commit 853c28f

Please sign in to comment.