Navigation Menu

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 6 changed files with 0 additions and 27 deletions.
5 changes: 0 additions & 5 deletions src/Decode.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_Mime
*/

namespace Zend\Mime;

use Zend\Mail\Headers;
use Zend\Stdlib\ErrorHandler;

/**
* @category Zend
* @package Zend_Mime
*/
class Decode
{
/**
Expand Down
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_Mime
*/

namespace Zend\Mime\Exception;

/**
* @category Zend
* @package Zend_Mime
*/
interface ExceptionInterface
{}
4 changes: 0 additions & 4 deletions src/Exception/RuntimeException.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_Mime
*/

namespace Zend\Mime\Exception;

/**
* Exception for Zend_Mime component.
*
* @category Zend
* @package Zend_Mime
*/
class RuntimeException
extends \RuntimeException
Expand Down
5 changes: 0 additions & 5 deletions src/Message.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_Mime
*/

namespace Zend\Mime;

/**
* @category Zend
* @package Zend_Mime
*/
class Message
{

Expand Down
4 changes: 0 additions & 4 deletions src/Mime.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_Mime
*/

namespace Zend\Mime;

/**
* Support class for MultiPart Mime Messages
*
* @category Zend
* @package Zend_Mime
*/
class Mime
{
Expand Down
4 changes: 0 additions & 4 deletions src/Part.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_Mime
*/

namespace Zend\Mime;

/**
* Class representing a MIME part.
*
* @category Zend
* @package Zend_Mime
*/
class Part
{
Expand Down

0 comments on commit a90b147

Please sign in to comment.