Skip to content
This repository has been archived by the owner on Jan 30, 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
Show file tree
Hide file tree
Showing 15 changed files with 0 additions and 74 deletions.
3 changes: 0 additions & 3 deletions src/BaseInputFilter.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_InputFilter
*/

namespace Zend\InputFilter;
Expand All @@ -17,8 +16,6 @@
/**
* @todo How should we deal with required input when data is missing?
* should a message be returned? if so, what message?
* @category Zend
* @package Zend_InputFilter
*/
class BaseInputFilter implements InputFilterInterface, UnknownInputsCapableInterface
{
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_InputFilter
*/

namespace Zend\InputFilter\Exception;

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

namespace Zend\InputFilter\Exception;

/**
* @category Zend
* @package Zend_InputFilter
* @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_InputFilter
*/

namespace Zend\InputFilter\Exception;

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

namespace Zend\InputFilter;
Expand All @@ -16,10 +15,6 @@
use Zend\Validator\ValidatorChain;
use Zend\Validator\ValidatorInterface;

/**
* @category Zend
* @package Zend_InputFilter
*/
class Factory
{
protected $defaultFilterChain;
Expand Down
4 changes: 0 additions & 4 deletions src/FileInput.php
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_InputFilter
*/

namespace Zend\InputFilter;
Expand All @@ -25,9 +24,6 @@
*
* 3. Instead of adding a NotEmpty validator, it will (by default) automatically add
* a Zend\Validator\File\Upload validator.
*
* @category Zend
* @package Zend_InputFilter
*/
class FileInput extends Input
{
Expand Down
5 changes: 0 additions & 5 deletions src/Input.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_InputFilter
*/

namespace Zend\InputFilter;
Expand All @@ -14,10 +13,6 @@
use Zend\Validator\ValidatorChain;
use Zend\Validator\NotEmpty;

/**
* @category Zend
* @package Zend_InputFilter
*/
class Input implements InputInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/InputFilter.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_InputFilter
*/

namespace Zend\InputFilter;

use Traversable;

/**
* @category Zend
* @package Zend_InputFilter
*/
class InputFilter extends BaseInputFilter
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/InputFilterAwareInterface.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_InputFilter
*/

namespace Zend\InputFilter;

/**
* @category Zend
* @package Zend_InputFilter
*/
interface InputFilterAwareInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/InputFilterAwareTrait.php
Expand Up @@ -5,17 +5,12 @@
* @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_InputFilter
*/

namespace Zend\InputFilter;

use Zend\InputFilter\InputFilterInterface;

/**
* @category Zend
* @package Zend_InputFilter
*/
trait InputFilterAwareTrait
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/InputFilterInterface.php
Expand Up @@ -5,18 +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_InputFilter
*/

namespace Zend\InputFilter;

use Countable;
use Traversable;

/**
* @category Zend
* @package Zend_InputFilter
*/
interface InputFilterInterface extends Countable
{
const VALIDATE_ALL = 'INPUT_FILTER_ALL';
Expand Down
5 changes: 0 additions & 5 deletions src/InputFilterProviderInterface.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_InputFilter
*/

namespace Zend\InputFilter;

/**
* @category Zend
* @package Zend_InputFilter
*/
interface InputFilterProviderInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions src/InputInterface.php
Expand Up @@ -5,18 +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_InputFilter
*/

namespace Zend\InputFilter;

use Zend\Filter\FilterChain;
use Zend\Validator\ValidatorChain;

/**
* @category Zend
* @package Zend_InputFilter
*/
interface InputInterface
{
public function setAllowEmpty($allowEmpty);
Expand Down
5 changes: 0 additions & 5 deletions src/InputProviderInterface.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_InputFilter
*/

namespace Zend\InputFilter;

/**
* @category Zend
* @package Zend_InputFilter
*/
interface InputProviderInterface
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/UnknownInputsCapableInterface.php
Expand Up @@ -5,17 +5,13 @@
* @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_InputFilter
*/

namespace Zend\InputFilter;

/**
* Implementors of this interface may report on the existence of unknown input,
* as well as retrieve all unknown values.
*
* @category Zend
* @package Zend_InputFilter
*/
interface UnknownInputsCapableInterface
{
Expand Down

0 comments on commit 2f0b6e4

Please sign in to comment.