vendor/symfony/workflow/MarkingStore/SingleStateMarkingStore.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.'SingleStateMarkingStore::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.  * SingleStateMarkingStore stores the marking into a property of the subject.
  17.  *
  18.  * This store deals with a "single state" Marking. It means a subject can be in
  19.  * one and only one state at the same time.
  20.  *
  21.  * @deprecated since Symfony 4.3, use MethodMarkingStore instead.
  22.  *
  23.  * @author GrĂ©goire Pineau <lyrixx@lyrixx.info>
  24.  */
  25. class SingleStateMarkingStore implements MarkingStoreInterface
  26. {
  27.     private $property;
  28.     private $propertyAccessor;
  29.     public function __construct(string $property 'marking'PropertyAccessorInterface $propertyAccessor null)
  30.     {
  31.         $this->property $property;
  32.         $this->propertyAccessor $propertyAccessor ?: PropertyAccess::createPropertyAccessor();
  33.     }
  34.     /**
  35.      * {@inheritdoc}
  36.      */
  37.     public function getMarking($subject)
  38.     {
  39.         $placeName $this->propertyAccessor->getValue($subject$this->property);
  40.         if (null === $placeName) {
  41.             return new Marking();
  42.         }
  43.         return new Marking([$placeName => 1]);
  44.     }
  45.     /**
  46.      * {@inheritdoc}
  47.      *
  48.      * @param array $context Some context
  49.      */
  50.     public function setMarking($subjectMarking $marking/*, array $context = []*/)
  51.     {
  52.         $this->propertyAccessor->setValue($subject$this->propertykey($marking->getPlaces()));
  53.     }
  54.     /**
  55.      * @return string
  56.      */
  57.     public function getProperty()
  58.     {
  59.         return $this->property;
  60.     }
  61. }