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

Commit

Permalink
Removed all @category, @Package, and @subpackage annotations
Browse files Browse the repository at this point in the history
- Per zendframework/zendframework#2743, and following on zendframework/zendframework#2953 and discussion on the ML
- Also removes empty docblocks, and empty lines at the end of docblocks
- Library only; phpdoc is never run on tests anyways, and did not want to
  potentially create breakage due to test expectations that relied on
  annotations. At this time, all tests pass.
  • Loading branch information
weierophinney committed Jan 21, 2013
Show file tree
Hide file tree
Showing 34 changed files with 0 additions and 150 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_Di
*/

namespace Zend\Di;
Expand All @@ -17,9 +16,6 @@

/**
* Configures Di instances
*
* @category Zend
* @package Zend_Di
*/
class Config
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/Annotation/Inject.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_Di
*/

namespace Zend\Di\Definition\Annotation;
Expand All @@ -14,9 +13,6 @@

/**
* Annotation for injection endpoints for dependencies
*
* @category Zend
* @package Zend_Di
*/
class Inject implements AnnotationInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/Annotation/Instantiator.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_Di
*/

namespace Zend\Di\Definition\Annotation;
Expand All @@ -14,9 +13,6 @@

/**
* Annotation for instantiator
*
* @category Zend
* @package Zend_Di
*/
class Instantiator implements AnnotationInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/ArrayDefinition.php
Expand Up @@ -5,16 +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_Di
*/

namespace Zend\Di\Definition;

/**
* Class definitions based on a given array
*
* @category Zend
* @package Zend_Di
*/
class ArrayDefinition implements DefinitionInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/Builder/InjectionMethod.php
Expand Up @@ -5,16 +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_Di
*/

namespace Zend\Di\Definition\Builder;

/**
* Definitions for an injection endpoint method
*
* @category Zend
* @package Zend_Di
*/
class InjectionMethod
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/Builder/PhpClass.php
Expand Up @@ -5,16 +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_Di
*/

namespace Zend\Di\Definition\Builder;

/**
* Object containing definitions for a single class
*
* @category Zend
* @package Zend_Di
*/
class PhpClass
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/BuilderDefinition.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_Di
*/

namespace Zend\Di\Definition;
Expand All @@ -14,9 +13,6 @@

/**
* Class definitions based on a configuration array
*
* @category Zend
* @package Zend_Di
*/
class BuilderDefinition implements DefinitionInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/ClassDefinition.php
Expand Up @@ -5,16 +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_Di
*/

namespace Zend\Di\Definition;

/**
* Class definitions for a single class
*
* @category Zend
* @package Zend_Di
*/
class ClassDefinition implements DefinitionInterface, PartialMarker
{
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/CompilerDefinition.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_Di
*/

namespace Zend\Di\Definition;
Expand All @@ -20,9 +19,6 @@

/**
* Class definitions based on a set of directories to be scanned
*
* @category Zend
* @package Zend_Di
*/
class CompilerDefinition implements DefinitionInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Definition/DefinitionInterface.php
Expand Up @@ -5,15 +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_Di
*/

namespace Zend\Di\Definition;

/**
* @category Zend
* @package Zend_Di
*/
interface DefinitionInterface
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/Definition/IntrospectionStrategy.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_Di
*/

namespace Zend\Di\Definition;
Expand All @@ -16,9 +15,6 @@
/**
* Strategy used to discover methods to be considered as endpoints for dependency injection based on implemented
* interfaces, annotations and method names
*
* @category Zend
* @package Zend_Di
*/
class IntrospectionStrategy
{
Expand Down
5 changes: 0 additions & 5 deletions src/Definition/PartialMarker.php
Expand Up @@ -5,15 +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_Di
*/

namespace Zend\Di\Definition;

/**
* @category Zend
* @package Zend_Di
*/
interface PartialMarker
{
}
4 changes: 0 additions & 4 deletions src/Definition/RuntimeDefinition.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_Di
*/

namespace Zend\Di\Definition;
Expand All @@ -16,9 +15,6 @@

/**
* Class definitions based on runtime reflection
*
* @category Zend
* @package Zend_Di
*/
class RuntimeDefinition implements DefinitionInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/DefinitionList.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_Di
*/

namespace Zend\Di;
Expand All @@ -14,9 +13,6 @@

/**
* Class definition based on multiple definitions
*
* @category Zend
* @package Zend_Di
*/
class DefinitionList extends SplDoublyLinkedList implements Definition\DefinitionInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/DependencyInjectionInterface.php
Expand Up @@ -5,15 +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_Di
*/

namespace Zend\Di;

/**
* @category Zend
* @package Zend_Di
*/
interface DependencyInjectionInterface extends LocatorInterface
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/Di.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_Di
*/

namespace Zend\Di;
Expand All @@ -15,9 +14,6 @@

/**
* Dependency injector that can generate instances using class definitions and configured instance parameters
*
* @category Zend
* @package Zend_Di
*/
class Di implements DependencyInjectionInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Display/Console.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_Di
*/

namespace Zend\Di\Display;
Expand All @@ -14,9 +13,6 @@

/**
* Exporter for class definitions
*
* @category Zend
* @package Zend_Di
*/
class Console
{
Expand Down
5 changes: 0 additions & 5 deletions src/Exception/CircularDependencyException.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_Di
*/

namespace Zend\Di\Exception;

use DomainException;

/**
* @category Zend
* @package Zend_Di
*/
class CircularDependencyException extends DomainException implements ExceptionInterface
{
}
5 changes: 0 additions & 5 deletions src/Exception/ClassNotFoundException.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_Di
*/

namespace Zend\Di\Exception;

use DomainException;

/**
* @category Zend
* @package Zend_Di
*/
class ClassNotFoundException extends DomainException implements ExceptionInterface
{
}
5 changes: 0 additions & 5 deletions src/Exception/ExceptionInterface.php
Expand Up @@ -5,15 +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_Di
*/

namespace Zend\Di\Exception;

/**
* @category Zend
* @package Zend_Di
*/
interface ExceptionInterface
{
}
5 changes: 0 additions & 5 deletions src/Exception/InvalidArgumentException.php
Expand Up @@ -5,15 +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_Di
*/

namespace Zend\Di\Exception;

/**
* @category Zend
* @package Zend_Di
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}
4 changes: 0 additions & 4 deletions src/Exception/InvalidCallbackException.php
Expand Up @@ -5,16 +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_Di
*/

namespace Zend\Di\Exception;

/**
* Exception to be thrown when an invalid php callback is provided
*
* @category Zend
* @package Zend_Di
*/
class InvalidCallbackException extends InvalidArgumentException
{
Expand Down
5 changes: 0 additions & 5 deletions src/Exception/InvalidParamNameException.php
Expand Up @@ -5,15 +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_Di
*/

namespace Zend\Di\Exception;

/**
* @category Zend
* @package Zend_Di
*/
class InvalidParamNameException extends InvalidArgumentException
{
}

0 comments on commit 8d0f5cb

Please sign in to comment.