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

Removed all @category, @package, and @subpackage annotations #3508

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 0 additions & 6 deletions library/Zend/Authentication/Adapter/AbstractAdapter.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-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Authentication
*/

namespace Zend\Authentication\Adapter;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
abstract class AbstractAdapter implements ValidatableAdapterInterface
{

Expand Down
6 changes: 0 additions & 6 deletions library/Zend/Authentication/Adapter/AdapterInterface.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_Authentication
*/

namespace Zend\Authentication\Adapter;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
interface AdapterInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions library/Zend/Authentication/Adapter/DbTable.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_Authentication
*/

namespace Zend\Authentication\Adapter;
Expand All @@ -17,11 +16,6 @@
use Zend\Db\Sql\Expression;
use Zend\Db\Sql\Select as DbSelect;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
class DbTable extends AbstractAdapter
{

Expand Down
6 changes: 0 additions & 6 deletions library/Zend/Authentication/Adapter/Digest.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_Authentication
*/

namespace Zend\Authentication\Adapter;

use Zend\Authentication\Result as AuthenticationResult;
use Zend\Stdlib\ErrorHandler;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
class Digest extends AbstractAdapter
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,11 @@
* @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_Authentication
*/

namespace Zend\Authentication\Adapter\Exception;

use Zend\Authentication\Exception\ExceptionInterface as Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter_Exception
*/
interface ExceptionInterface extends Exception
{}
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_Authentication
*/

namespace Zend\Authentication\Adapter\Exception;
Expand Down
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_Authentication
*/

namespace Zend\Authentication\Adapter\Exception;

use Zend\Authentication\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
class RuntimeException extends Exception\RuntimeException implements
ExceptionInterface
{
Expand Down
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_Authentication
*/

namespace Zend\Authentication\Adapter\Exception;

use Zend\Authentication\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
class UnexpectedValueException extends Exception\UnexpectedValueException implements
ExceptionInterface
{
Expand Down
4 changes: 0 additions & 4 deletions library/Zend/Authentication/Adapter/Http.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_Authentication
*/

namespace Zend\Authentication\Adapter;
Expand All @@ -20,9 +19,6 @@
*
* Implements a pretty good chunk of RFC 2617.
*
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter_Http
* @todo Support auth-int
* @todo Track nonces, nonce-count, opaque for replay protection and stale support
* @todo Support Authentication-Info header
Expand Down
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_Authentication
*/

namespace Zend\Authentication\Adapter\Http\Exception;
Expand All @@ -14,10 +13,6 @@

/**
* HTTP Auth Resolver Exception
*
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter_Http_Exception
*/
interface ExceptionInterface extends Exception
{}
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_Authentication
*/

namespace Zend\Authentication\Adapter\Http\Exception;

use Zend\Authentication\Adapter\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter_Http
*/
class InvalidArgumentException extends Exception\InvalidArgumentException implements
ExceptionInterface
{
Expand Down
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_Authentication
*/

namespace Zend\Authentication\Adapter\Http\Exception;

use Zend\Authentication\Adapter\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter_Http
*/
class RuntimeException extends Exception\RuntimeException implements
ExceptionInterface
{
Expand Down
5 changes: 0 additions & 5 deletions library/Zend/Authentication/Adapter/Http/FileResolver.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_Authentication
*/

namespace Zend\Authentication\Adapter\Http;
Expand All @@ -14,10 +13,6 @@

/**
* HTTP Authentication File Resolver
*
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter_Http
*/
class FileResolver implements ResolverInterface
{
Expand Down
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_Authentication
*/

namespace Zend\Authentication\Adapter\Http;
Expand All @@ -15,10 +14,6 @@
*
* Defines an interface to resolve a username/realm combination into a shared
* secret usable by HTTP Authentication.
*
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter_Http
*/
interface ResolverInterface
{
Expand Down
6 changes: 0 additions & 6 deletions library/Zend/Authentication/Adapter/Ldap.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_Authentication
*/

namespace Zend\Authentication\Adapter;
Expand All @@ -15,11 +14,6 @@
use Zend\Ldap as ZendLdap;
use Zend\Ldap\Exception\LdapException;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
class Ldap extends AbstractAdapter
{

Expand Down
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_Authentication
*/

namespace Zend\Authentication\Adapter;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Adapter
*/
interface ValidatableAdapterInterface extends AdapterInterface
{
/**
Expand Down
5 changes: 0 additions & 5 deletions library/Zend/Authentication/AuthenticationService.php
Original file line number Diff line number Diff line change
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_Authentication
*/

namespace Zend\Authentication;

/**
* @category Zend
* @package Zend_Authentication
*/
class AuthenticationService
{
/**
Expand Down
6 changes: 0 additions & 6 deletions library/Zend/Authentication/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_Authentication
*/

namespace Zend\Authentication\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Exception
*/
interface ExceptionInterface
{}
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_Authentication
*/

namespace Zend\Authentication\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Exception
*/
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
{
Expand Down
6 changes: 0 additions & 6 deletions library/Zend/Authentication/Exception/RuntimeException.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_Authentication
*/

namespace Zend\Authentication\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Exception
*/
class RuntimeException extends \RuntimeException implements
ExceptionInterface
{
Expand Down
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_Authentication
*/

namespace Zend\Authentication\Exception;

/**
* @category Zend
* @package Zend_Authentication
* @subpackage Exception
*/
class UnexpectedValueException extends \UnexpectedValueException implements
ExceptionInterface
{
Expand Down
5 changes: 0 additions & 5 deletions library/Zend/Authentication/Result.php
Original file line number Diff line number Diff line change
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_Authentication
*/

namespace Zend\Authentication;

/**
* @category Zend
* @package Zend_Authentication
*/
class Result
{
/**
Expand Down
Loading