core/lib/Thelia/TaxEngine/OrderProductTaxCollection.php line 60

  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\TaxEngine;
  12. use Thelia\Model\OrderProductTax;
  13. /**
  14.  * @author Etienne Roudeix <eroudeix@openstudio.fr>
  15.  */
  16. class OrderProductTaxCollection implements \Iterator
  17. {
  18.     private $position;
  19.     protected $taxes = [];
  20.     public function __construct()
  21.     {
  22.         foreach (\func_get_args() as $tax) {
  23.             $this->addTax($tax);
  24.         }
  25.     }
  26.     public function isEmpty()
  27.     {
  28.         return \count($this->taxes) == 0;
  29.     }
  30.     /**
  31.      * @return OrderProductTaxCollection
  32.      */
  33.     public function addTax(OrderProductTax $tax)
  34.     {
  35.         $this->taxes[] = $tax;
  36.         return $this;
  37.     }
  38.     public function getCount()
  39.     {
  40.         return \count($this->taxes);
  41.     }
  42.     /**
  43.      * (PHP 5 &gt;= 5.0.0)<br/>
  44.      * Return the current element.
  45.      *
  46.      * @see http://php.net/manual/en/iterator.current.php
  47.      *
  48.      * @return OrderProductTax
  49.      */
  50.     public function current()
  51.     {
  52.         return $this->taxes[$this->position];
  53.     }
  54.     /**
  55.      * (PHP 5 &gt;= 5.0.0)<br/>
  56.      * Move forward to next element.
  57.      *
  58.      * @see http://php.net/manual/en/iterator.next.php
  59.      *
  60.      * @return void any returned value is ignored
  61.      */
  62.     public function next(): void
  63.     {
  64.         ++$this->position;
  65.     }
  66.     /**
  67.      * (PHP 5 &gt;= 5.0.0)<br/>
  68.      * Return the key of the current element.
  69.      *
  70.      * @see http://php.net/manual/en/iterator.key.php
  71.      *
  72.      * @return mixed scalar on success, or null on failure
  73.      */
  74.     public function key()
  75.     {
  76.         return $this->position;
  77.     }
  78.     /**
  79.      * (PHP 5 &gt;= 5.0.0)<br/>
  80.      * Checks if current position is valid.
  81.      *
  82.      * @see http://php.net/manual/en/iterator.valid.php
  83.      *
  84.      * @return bool The return value will be casted to boolean and then evaluated.
  85.      *              Returns true on success or false on failure.
  86.      */
  87.     public function valid(): bool
  88.     {
  89.         return isset($this->taxes[$this->position]);
  90.     }
  91.     /**
  92.      * (PHP 5 &gt;= 5.0.0)<br/>
  93.      * Rewind the Iterator to the first element.
  94.      *
  95.      * @see http://php.net/manual/en/iterator.rewind.php
  96.      *
  97.      * @return void any returned value is ignored
  98.      */
  99.     public function rewind(): void
  100.     {
  101.         $this->position 0;
  102.     }
  103.     public function getKey($key)
  104.     {
  105.         return $this->taxes[$key] ?? null;
  106.     }
  107. }