core/lib/Thelia/Condition/ConditionCollection.php line 66

  1. <?php
  2. /*
  3.  * This file is part of the Thelia package.
  4.  * http://www.thelia.net
  5.  *
  6.  * (c) OpenStudio <info@thelia.net>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Thelia\Condition;
  12. use ArrayAccess;
  13. use Countable;
  14. use Iterator;
  15. use Thelia\Condition\Implementation\ConditionInterface;
  16. /**
  17.  * Manage a set of ConditionInterface.
  18.  *
  19.  * @author  Guillaume MOREL <gmorel@openstudio.fr>
  20.  */
  21. class ConditionCollection implements \Iterator\Countable\ArrayAccess
  22. {
  23.     /** @var ConditionInterface[] */
  24.     protected $conditions = [];
  25.     /**
  26.      * (PHP 5 &gt;= 5.0.0)
  27.      * Return the current element.
  28.      *
  29.      * @see http://php.net/manual/en/iterator.current.php
  30.      *
  31.      * @return mixed can return any type
  32.      */
  33.     public function current()
  34.     {
  35.         $var current($this->conditions);
  36.         return $var;
  37.     }
  38.     /**
  39.      * (PHP 5 &gt;= 5.0.0)
  40.      * Move forward to next element.
  41.      *
  42.      * @see http://php.net/manual/en/iterator.next.php
  43.      *
  44.      * @return void any returned value is ignored
  45.      */
  46.     public function next(): void
  47.     {
  48.         next($this->conditions);
  49.     }
  50.     /**
  51.      * (PHP 5 &gt;= 5.0.0)
  52.      * Return the key of the current element.
  53.      *
  54.      * @see http://php.net/manual/en/iterator.key.php
  55.      *
  56.      * @return mixed scalar on success, or null on failure
  57.      */
  58.     public function key()
  59.     {
  60.         $var key($this->conditions);
  61.         return $var;
  62.     }
  63.     /**
  64.      * (PHP 5 &gt;= 5.0.0)
  65.      * Checks if current position is valid.
  66.      *
  67.      * @see http://php.net/manual/en/iterator.valid.php
  68.      *
  69.      * @return bool The return value will be casted to boolean and then evaluated.
  70.      *              Returns true on success or false on failure.
  71.      */
  72.     public function valid(): bool
  73.     {
  74.         $key key($this->conditions);
  75.         return $key !== null;
  76.     }
  77.     /**
  78.      * (PHP 5 &gt;= 5.0.0)
  79.      * Rewind the Iterator to the first element.
  80.      *
  81.      * @see http://php.net/manual/en/iterator.rewind.php
  82.      *
  83.      * @return void any returned value is ignored
  84.      */
  85.     public function rewind(): void
  86.     {
  87.         reset($this->conditions);
  88.     }
  89.     /**
  90.      * (PHP 5 &gt;= 5.1.0)
  91.      * Count elements of an object.
  92.      *
  93.      * @see http://php.net/manual/en/countable.count.php
  94.      *
  95.      * @return int The custom count as an integer.
  96.      *             The return value is cast to an integer.
  97.      */
  98.     public function count(): int
  99.     {
  100.         return \count($this->conditions);
  101.     }
  102.     /**
  103.      * (PHP 5 >= 5.0.0)
  104.      * Whether a offset exists.
  105.      *
  106.      * @see http://php.net/manual/en/arrayaccess.offsetexists.php
  107.      *
  108.      * @param mixed $offset
  109.      *                      An offset to check for
  110.      *
  111.      * @return bool true on success or false on failure.
  112.      *              The return value will be casted to boolean if non-boolean was returned.
  113.      */
  114.     public function offsetExists($offset): bool
  115.     {
  116.         return isset($this->conditions[$offset]);
  117.     }
  118.     /**
  119.      * (PHP 5 >= 5.0.0)
  120.      * Offset to retrieve.
  121.      *
  122.      * @see http://php.net/manual/en/arrayaccess.offsetget.php
  123.      *
  124.      * @param mixed $offset
  125.      *                      The offset to retrieve
  126.      *
  127.      * @return mixed can return all value types
  128.      */
  129.     public function offsetGet($offset)
  130.     {
  131.         return $this->conditions[$offset] ?? null;
  132.     }
  133.     /**
  134.      * (PHP 5 >= 5.0.0)
  135.      * Offset to set.
  136.      *
  137.      * @see http://php.net/manual/en/arrayaccess.offsetset.php
  138.      *
  139.      * @param mixed $offset
  140.      *                      The offset to assign the value to
  141.      * @param mixed $value
  142.      *                      The value to set
  143.      */
  144.     public function offsetSet($offset$value): void
  145.     {
  146.         if (null === $offset) {
  147.             $this->conditions[] = $value;
  148.         } else {
  149.             $this->conditions[$offset] = $value;
  150.         }
  151.     }
  152.     /**
  153.      * (PHP 5 >= 5.0.0)
  154.      * Offset to unset.
  155.      *
  156.      * @see http://php.net/manual/en/arrayaccess.offsetunset.php
  157.      *
  158.      * @param mixed $offset
  159.      *                      The offset to unset
  160.      */
  161.     public function offsetUnset($offset): void
  162.     {
  163.         unset($this->conditions[$offset]);
  164.     }
  165.     /**
  166.      * Allow to compare 2 set of conditions.
  167.      *
  168.      * @return string Jsoned data
  169.      */
  170.     public function __toString()
  171.     {
  172.         $arrayToSerialize = [];
  173.         /** @var ConditionInterface $condition */
  174.         foreach ($this as $condition) {
  175.             $arrayToSerialize[] = $condition->getSerializableCondition();
  176.         }
  177.         return json_encode($arrayToSerialize);
  178.     }
  179. }