Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-navigation/src/Navigation.php')
-rw-r--r--vendor/zendframework/zend-navigation/src/Navigation.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/vendor/zendframework/zend-navigation/src/Navigation.php b/vendor/zendframework/zend-navigation/src/Navigation.php
deleted file mode 100644
index 2c2dd5b..0000000
--- a/vendor/zendframework/zend-navigation/src/Navigation.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Navigation;
-
-use Traversable;
-
-/**
- * A simple container class for {@link Zend\Navigation\Page} pages
- */
-class Navigation extends AbstractContainer
-{
- /**
- * Creates a new navigation container
- *
- * @param array|Traversable $pages [optional] pages to add
- * @throws Exception\InvalidArgumentException if $pages is invalid
- */
- public function __construct($pages = null)
- {
- if ($pages && (!is_array($pages) && !$pages instanceof Traversable)) {
- throw new Exception\InvalidArgumentException(
- 'Invalid argument: $pages must be an array, an '
- . 'instance of Traversable, or null'
- );
- }
-
- if ($pages) {
- $this->addPages($pages);
- }
- }
-}