vendor/symfony/workflow/MarkingStore/MultipleStateMarkingStore.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Workflow\MarkingStore;
  11. @trigger_error(sprintf('"%s" is deprecated since Symfony 4.3, use "%s" instead.'MultipleStateMarkingStore::class, MethodMarkingStore::class), \E_USER_DEPRECATED);
  12. use Symfony\Component\PropertyAccess\PropertyAccess;
  13. use Symfony\Component\PropertyAccess\PropertyAccessorInterface;
  14. use Symfony\Component\Workflow\Marking;
  15. /**
  16.  * MultipleStateMarkingStore stores the marking into a property of the
  17.  * subject.
  18.  *
  19.  * This store deals with a "multiple state" Marking. It means a subject can be
  20.  * in many states at the same time.
  21.  *
  22.  * @deprecated since Symfony 4.3, use MethodMarkingStore instead.
  23.  *
  24.  * @author GrĂ©goire Pineau <lyrixx@lyrixx.info>
  25.  */
  26. class MultipleStateMarkingStore implements MarkingStoreInterface
  27. {
  28.     private $property;
  29.     private $propertyAccessor;
  30.     public function __construct(string $property 'marking'PropertyAccessorInterface $propertyAccessor null)
  31.     {
  32.         $this->property $property;
  33.         $this->propertyAccessor $propertyAccessor ?: PropertyAccess::createPropertyAccessor();
  34.     }
  35.     /**
  36.      * {@inheritdoc}
  37.      */
  38.     public function getMarking($subject)
  39.     {
  40.         return new Marking($this->propertyAccessor->getValue($subject$this->property) ?: []);
  41.     }
  42.     /**
  43.      * {@inheritdoc}
  44.      *
  45.      * @param array $context Some context
  46.      */
  47.     public function setMarking($subjectMarking $marking/*, array $context = []*/)
  48.     {
  49.         $this->propertyAccessor->setValue($subject$this->property$marking->getPlaces());
  50.     }
  51.     /**
  52.      * @return string
  53.      */
  54.     public function getProperty()
  55.     {
  56.         return $this->property;
  57.     }
  58. }