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 17 changed files with 0 additions and 80 deletions.
5 changes: 0 additions & 5 deletions src/AutoloaderFactory.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_Loader
*/

namespace Zend\Loader;
Expand All @@ -19,10 +18,6 @@
return;
}

/**
* @category Zend
* @package Zend_Loader
*/
abstract class AutoloaderFactory
{
const STANDARD_AUTOLOADER = 'Zend\Loader\StandardAutoloader';
Expand Down
4 changes: 0 additions & 4 deletions src/ClassMapAutoloader.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_Loader
*/

namespace Zend\Loader;
Expand All @@ -19,9 +18,6 @@
* Class-map autoloader
*
* Utilizes class-map files to lookup classfile locations.
*
* @category Zend
* @package Zend_Loader
*/
class ClassMapAutoloader implements SplAutoloader
{
Expand Down
6 changes: 0 additions & 6 deletions src/Exception/BadMethodCallException.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_Loader
*/

namespace Zend\Loader\Exception;

require_once __DIR__ . '/ExceptionInterface.php';

/**
* @category Zend
* @package Zend_Loader
* @subpackage Exception
*/
class BadMethodCallException extends \BadMethodCallException implements
ExceptionInterface
{
Expand Down
6 changes: 0 additions & 6 deletions src/Exception/DomainException.php
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_Loader
*/

namespace Zend\Loader\Exception;

require_once __DIR__ . '/ExceptionInterface.php';

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

namespace Zend\Loader\Exception;

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

namespace Zend\Loader\Exception;

require_once __DIR__ . '/ExceptionInterface.php';

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

namespace Zend\Loader\Exception;

require_once __DIR__ . '/ExceptionInterface.php';

/**
* @category Zend
* @package Zend_Loader
* @subpackage Exception
*/
class InvalidPathException extends \Exception implements ExceptionInterface
{}
6 changes: 0 additions & 6 deletions src/Exception/MissingResourceNamespaceException.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_Loader
*/

namespace Zend\Loader\Exception;

require_once __DIR__ . '/ExceptionInterface.php';

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

namespace Zend\Loader\Exception;
Expand All @@ -14,10 +13,6 @@

/**
* Plugin class loader exceptions
*
* @category Zend
* @package Zend_Loader
* @subpackage Exception
*/
class PluginLoaderException extends DomainException
{
Expand Down
6 changes: 0 additions & 6 deletions src/Exception/RuntimeException.php
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_Loader
*/

namespace Zend\Loader\Exception;

require_once __DIR__ . '/ExceptionInterface.php';

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

namespace Zend\Loader\Exception;

require_once __DIR__ . '/DomainException.php';

/**
* @category Zend
* @package Zend_Loader
* @subpackage Exception
*/
class SecurityException extends DomainException
{}
1 change: 0 additions & 1 deletion src/ModuleAutoloader.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_Loader
*/

namespace Zend\Loader;
Expand Down
4 changes: 0 additions & 4 deletions src/PluginClassLoader.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_Loader
*/

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

/**
* Plugin class locator interface
*
* @category Zend
* @package Zend_Loader
*/
class PluginClassLoader implements PluginClassLocator
{
Expand Down
4 changes: 0 additions & 4 deletions src/PluginClassLocator.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_Loader
*/

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

/**
* Plugin class locator interface
*
* @category Zend
* @package Zend_Loader
*/
interface PluginClassLocator extends ShortNameLocator, \IteratorAggregate
{
Expand Down
4 changes: 0 additions & 4 deletions src/ShortNameLocator.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_Loader
*/

namespace Zend\Loader;

/**
* Short name locator interface
*
* @category Zend
* @package Zend_Loader
*/
interface ShortNameLocator
{
Expand Down
3 changes: 0 additions & 3 deletions src/SplAutoloader.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_Loader
*/

namespace Zend\Loader;
Expand All @@ -17,8 +16,6 @@
/**
* Defines an interface for classes that may register with the spl_autoload
* registry
*
* @package Zend_Loader
*/
interface SplAutoloader
{
Expand Down
3 changes: 0 additions & 3 deletions src/StandardAutoloader.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_Loader
*/

namespace Zend\Loader;
Expand All @@ -19,8 +18,6 @@
* Allows autoloading both namespaced and vendor-prefixed classes. Class
* lookups are performed on the filesystem. If a class file for the referenced
* class is not found, a PHP warning will be raised by include().
*
* @package Zend_Loader
*/
class StandardAutoloader implements SplAutoloader
{
Expand Down

0 comments on commit 42eacae

Please sign in to comment.