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

Commit

Permalink
Merge ee66ba6 into 004fd91
Browse files Browse the repository at this point in the history
  • Loading branch information
thexpand committed Aug 11, 2018
2 parents 004fd91 + ee66ba6 commit b4f77f7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/View/HelperTrait.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

namespace Zend\Mvc\Plugin\FlashMessenger\View;

use Zend\Mvc\Plugin\FlashMessenger\FlashMessenger as PluginFlashMessenger;
use Zend\Mvc\Plugin\FlashMessenger\View\Helper\FlashMessenger;

/**
* Trait HelperTrait
*
* The trait provides convenience methods for view helpers,
* defined by the zend-mvc-plugin-flashmessenger component.
* It is designed to be used for type-hinting $this variable
* inside zend-view templates via doc blocks.
*
* The base class is PhpRenderer, followed by the helper trait from
* the zend-mvc-plugin-flashmessenger component. However, multiple helper traits
* from different Zend components can be chained afterwards.
*
* @example @var \Zend\View\Renderer\PhpRenderer|\Zend\Mvc\Plugin\FlashMessenger\View\HelperTrait $this
*
* @method FlashMessenger|PluginFlashMessenger flashMessenger($namespace = null)
*/
trait HelperTrait
{
}

0 comments on commit b4f77f7

Please sign in to comment.