Home
last modified time | relevance | path

Searched refs:maxPosition (Results 1 – 1 of 1) sorted by relevance

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DCoreTest.php297 … public function __construct(array $array, array $keys, $allowAccess = false, $maxPosition = false) argument
299 $this->iterator = new CoreTestIterator($array, $keys, $allowAccess, $maxPosition);
312 …public function __construct(array $array, array $keys, $allowValueAccess = false, $maxPosition = f… argument
314 … $this->iterator = new CoreTestIteratorAggregate($array, $keys, $allowValueAccess, $maxPosition);
329 private $maxPosition; variable in CoreTestIterator
331 …public function __construct(array $values, array $keys, $allowValueAccess = false, $maxPosition = … argument
337 $this->maxPosition = false === $maxPosition ? \count($values) + 1 : $maxPosition;
362 if ($this->position === $this->maxPosition) {
363 … throw new \LogicException(sprintf('Code should not iterate beyond %d.', $this->maxPosition));