12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Model\Method\Specification;
- use Magento\Payment\Model\Method\SpecificationInterface;
- /**
- * Composite specification
- *
- * Use this class for virtual types declaration.
- *
- * @api
- * @since 100.0.2
- */
- class Composite implements SpecificationInterface
- {
- /**
- * Specifications collection
- *
- * @var SpecificationInterface[]
- */
- protected $specifications = [];
- /**
- * Construct
- *
- * @param Factory $factory
- * @param array $specifications
- */
- public function __construct(Factory $factory, $specifications = [])
- {
- foreach ($specifications as $specification) {
- $this->specifications[] = $factory->create($specification);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function isSatisfiedBy($paymentMethod)
- {
- foreach ($this->specifications as $specification) {
- if (!$specification->isSatisfiedBy($paymentMethod)) {
- return false;
- }
- }
- return true;
- }
- }
|