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

Commit

Permalink
Merge pull request zendframework/zendframework#4352 from neeckeloo/do…
Browse files Browse the repository at this point in the history
…c-blocks-consistency

Fix doc blocks consistency and coding standards PSR2

Conflicts:
	library/Zend/Barcode/Renderer/Pdf.php
	library/Zend/Mvc/Router/Http/Regex.php
	library/Zend/View/Helper/Navigation/Listener/AclListener.php
  • Loading branch information
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Helper/Identity.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Identity extends AbstractHelper
*/
public function __invoke()
{
if (!$this->authenticationService instanceof AuthenticationService){
if (!$this->authenticationService instanceof AuthenticationService) {
throw new Exception\RuntimeException('No AuthenticationService instance provided');
}

Expand Down
2 changes: 1 addition & 1 deletion src/Helper/Layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function setTemplate($template)
*/
protected function getViewModelHelper()
{
if(null === $this->viewModelHelper) {
if (null === $this->viewModelHelper) {
$this->viewModelHelper = $this->getView()->plugin('view_model');
}

Expand Down
2 changes: 1 addition & 1 deletion src/Helper/Navigation/AbstractHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public function accept(AbstractPage $page, $recursive = true)
* Determines whether a page should be allowed given certain parameters
*
* @param array $params
* @return boolean
* @return bool
*/
protected function isAllowed($params)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/PartialLoop.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PartialLoop extends Partial
/**
* Marker to where the pointer is at in the loop
*
* @var integer
* @var int
*/
protected $partialCounter = 0;

Expand Down

0 comments on commit 062b17e

Please sign in to comment.