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

Commit

Permalink
Merge branch 'feature/docblock-simplification' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w committed Jan 21, 2013
3 parents 5537924 + de5b7ca + 7725142 commit c100a2a
Show file tree
Hide file tree
Showing 81 changed files with 0 additions and 378 deletions.
4 changes: 0 additions & 4 deletions src/Exception/BadMethodCallException.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_View
*/

namespace Zend\View\Exception;

/**
* Bad method call exception
*
* @category Zend
* @package Zend_View
*/
class BadMethodCallException
extends \BadMethodCallException
Expand Down
4 changes: 0 additions & 4 deletions src/Exception/DomainException.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_View
*/

namespace Zend\View\Exception;

/**
* Domain exception
*
* @category Zend
* @package Zend_View
*/
class DomainException
extends \DomainException
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_View
*/

namespace Zend\View\Exception;

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

namespace Zend\View\Exception;

/**
* Invalid argument exception
*
* @category Zend
* @package Zend_View
*/
class InvalidArgumentException
extends \InvalidArgumentException
Expand Down
4 changes: 0 additions & 4 deletions src/Exception/InvalidHelperException.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_View
*/

namespace Zend\View\Exception;

/**
* Invalid helper exception
*
* @category Zend
* @package Zend_View
*/
class InvalidHelperException
extends \Exception
Expand Down
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_View
*/

namespace Zend\View\Exception;

/**
* Runtime exception
*
* @category Zend
* @package Zend_View
*/
class RuntimeException
extends \RuntimeException
Expand Down
6 changes: 0 additions & 6 deletions src/Helper/AbstractHelper.php
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_View
*/

namespace Zend\View\Helper;

use Zend\View\Helper\HelperInterface;
use Zend\View\Renderer\RendererInterface as Renderer;

/**
* @category Zend
* @package Zend_View
* @subpackage Helper
*/
abstract class AbstractHelper implements HelperInterface
{
/**
Expand Down
6 changes: 0 additions & 6 deletions src/Helper/AbstractHtmlElement.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_View
*/

namespace Zend\View\Helper;

/**
* @category Zend
* @package Zend_View
* @subpackage Helper
*/
abstract class AbstractHtmlElement extends AbstractHelper
{
/**
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/BasePath.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_View
*/

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

/**
* Helper for retrieving the base path.
*
* @package Zend_View
* @subpackage Helper
*/
class BasePath extends AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/Cycle.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_View
*/

namespace Zend\View\Helper;

/**
* Helper for alternating between set of values
*
* @package Zend_View
* @subpackage Helper
*/
class Cycle extends AbstractHelper implements \Iterator
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/DeclareVars.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_View
*/

namespace Zend\View\Helper;

/**
* Helper for declaring default values of template variables
*
* @package Zend_View
* @subpackage Helper
*/
class DeclareVars extends AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/Doctype.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_View
*/

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

/**
* Helper for setting and retrieving the doctype
*
* @package Zend_View
* @subpackage Helper
*/
class Doctype extends AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/EscapeCss.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_View
*/

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

/**
* Helper for escaping values
*
* @package Zend_View
* @subpackage Helper
*/
class EscapeCss extends Escaper\AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/EscapeHtml.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_View
*/

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

/**
* Helper for escaping values
*
* @package Zend_View
* @subpackage Helper
*/
class EscapeHtml extends Escaper\AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/EscapeHtmlAttr.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_View
*/

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

/**
* Helper for escaping values
*
* @package Zend_View
* @subpackage Helper
*/
class EscapeHtmlAttr extends Escaper\AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/EscapeJs.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_View
*/

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

/**
* Helper for escaping values
*
* @package Zend_View
* @subpackage Helper
*/
class EscapeJs extends Escaper\AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/EscapeUrl.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_View
*/

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

/**
* Helper for escaping values
*
* @package Zend_View
* @subpackage Helper
*/
class EscapeUrl extends Escaper\AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/Escaper/AbstractHelper.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_View
*/

namespace Zend\View\Helper\Escaper;
Expand All @@ -16,9 +15,6 @@

/**
* Helper for escaping values
*
* @package Zend_View
* @subpackage Helper
*/
abstract class AbstractHelper extends Helper\AbstractHelper
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/FlashMessenger.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_View
*/

namespace Zend\View\Helper;
Expand All @@ -18,9 +17,6 @@

/**
* Helper to proxy the plugin flash messenger
*
* @package Zend_View
* @subpackage Helper
*/
class FlashMessenger extends AbstractHelper implements ServiceLocatorAwareInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Helper/Gravatar.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_View
*/

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

/**
* Helper for retrieving avatars from gravatar.com
*
* @package Zend\View
* @subpackage Helper
*/
class Gravatar extends AbstractHtmlElement
{
Expand Down
3 changes: 0 additions & 3 deletions src/Helper/HeadLink.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_View
*/

namespace Zend\View\Helper;
Expand All @@ -18,8 +17,6 @@
* Zend_Layout_View_Helper_HeadLink
*
* @see http://www.w3.org/TR/xhtml1/dtds.html
* @package Zend_View
* @subpackage Helper
*/
class HeadLink extends Placeholder\Container\AbstractStandalone
{
Expand Down
3 changes: 0 additions & 3 deletions src/Helper/HeadMeta.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_View
*/

namespace Zend\View\Helper;
Expand All @@ -18,8 +17,6 @@
* Zend_Layout_View_Helper_HeadMeta
*
* @see http://www.w3.org/TR/xhtml1/dtds.html
* @package Zend_View
* @subpackage Helper
*/
class HeadMeta extends Placeholder\Container\AbstractStandalone
{
Expand Down

0 comments on commit c100a2a

Please sign in to comment.