core/lib/Thelia/Core/Template/Element/FlashMessage.php line 92
<?php/** This file is part of the Thelia package.* http://www.thelia.net** (c) OpenStudio <info@thelia.net>** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*/namespace Thelia\Core\Template\Element;/*** Class FlashMessage.** @author Julien Chanséaume <jchanseaume@openstudio.fr>*/class FlashMessage implements \Iterator{private $position;protected $collection = [];public function __construct(){$this->position = 0;$this->collection = [];}public function add($type, $messages): void{foreach ($messages as $message) {$this->collection[] = ['type' => $type,'message' => $message,];}}public function addAll($all): void{foreach ($all as $type => $messages) {$this->add($type, $messages);}}public function isEmpty(){return \count($this->collection) == 0;}public function getCount(){return \count($this->collection);}/*** (PHP 5 >= 5.0.0)<br/>* Return the current element.** @see http://php.net/manual/en/iterator.current.php** @return mixed can return any type*/public function current(){return $this->collection[$this->position];}/*** (PHP 5 >= 5.0.0)<br/>* Move forward to next element.** @see http://php.net/manual/en/iterator.next.php** @return void any returned value is ignored*/public function next(): void{++$this->position;}/*** (PHP 5 >= 5.0.0)<br/>* Return the key of the current element.** @see http://php.net/manual/en/iterator.key.php** @return mixed scalar on success, or null on failure*/public function key(){return $this->position;}/*** (PHP 5 >= 5.0.0)<br/>* Checks if current position is valid.** @see http://php.net/manual/en/iterator.valid.php** @return bool The return value will be casted to boolean and then evaluated.* Returns true on success or false on failure.*/public function valid(): bool{return isset($this->collection[$this->position]);}/*** (PHP 5 >= 5.0.0)<br/>* Rewind the Iterator to the first element.** @see http://php.net/manual/en/iterator.rewind.php** @return void any returned value is ignored*/public function rewind(): void{$this->position = 0;}}