Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Specification / SpecificationArrayIterator.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/Specification/SpecificationArrayIterator.php b/vendor/behat/behat/src/Behat/Testwork/Specification/SpecificationArrayIterator.php
new file mode 100644 (file)
index 0000000..c48292d
--- /dev/null
@@ -0,0 +1,50 @@
+<?php
+
+/*
+ * This file is part of the Behat Testwork.
+ * (c) Konstantin Kudryashov <ever.zet@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Behat\Testwork\Specification;
+
+use ArrayIterator;
+use Behat\Testwork\Suite\Suite;
+
+/**
+ * Iterates over specifications array.
+ *
+ * Return instance of this class from locator if specifications cannot be searched lazily.
+ *
+ * @author Christophe Coevoet <stof@notk.org>
+ */
+final class SpecificationArrayIterator extends ArrayIterator implements SpecificationIterator
+{
+    /**
+     * @var Suite
+     */
+    private $suite;
+
+    /**
+     * Initializes iterator.
+     *
+     * @param Suite   $suite
+     * @param mixed[] $specifications
+     */
+    public function __construct(Suite $suite, $specifications = array())
+    {
+        $this->suite = $suite;
+
+        parent::__construct($specifications);
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getSuite()
+    {
+        return $this->suite;
+    }
+}