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

Commit

Permalink
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/AbstractContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
use RecursiveIterator;
use RecursiveIteratorIterator;
use Traversable;
use Zend\Stdlib\ArrayUtils;
use Zend\Stdlib\ErrorHandler;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Page/AbstractPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ public function setVisible($visible = true)
if (is_string($visible) && 'false' == strtolower($visible)) {
$visible = false;
}
$this->visible = (bool)$visible;
$this->visible = (bool) $visible;
return $this;
}

Expand Down
1 change: 0 additions & 1 deletion src/Page/Mvc.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
use Zend\Mvc\Router\RouteStackInterface;
use Zend\Navigation\Exception;
use Zend\Mvc\ModuleRouteListener;
use Zend\View\Helper\Url as UrlHelper;

/**
* Represents a page that is defined using controller, action, route
Expand Down
1 change: 0 additions & 1 deletion src/Service/AbstractNavigationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
use Zend\Mvc\Router\RouteStackInterface as Router;
use Zend\Navigation\Exception;
use Zend\Navigation\Navigation;
use Zend\Navigation\Page\Mvc as MvcPage;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;

Expand Down

0 comments on commit e5c1ff6

Please sign in to comment.