* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Workflow; use Symfony\Component\Workflow\Metadata\MetadataStoreInterface; /** * Builds a definition. * * @author Fabien Potencier * @author Grégoire Pineau * @author Tobias Nyholm */ class DefinitionBuilder { private $places = array(); private $transitions = array(); private $initialPlace; private $metadataStore; /** * @param string[] $places * @param Transition[] $transitions */ public function __construct(array $places = array(), array $transitions = array()) { $this->addPlaces($places); $this->addTransitions($transitions); } /** * @return Definition */ public function build() { return new Definition($this->places, $this->transitions, $this->initialPlace, $this->metadataStore); } /** * Clear all data in the builder. * * @return $this */ public function clear() { $this->places = array(); $this->transitions = array(); $this->initialPlace = null; $this->metadataStore = null; return $this; } /** * @param string $place * * @return $this */ public function setInitialPlace($place) { $this->initialPlace = $place; return $this; } /** * @param string $place * * @return $this */ public function addPlace($place) { if (!$this->places) { $this->initialPlace = $place; } $this->places[$place] = $place; return $this; } /** * @param string[] $places * * @return $this */ public function addPlaces(array $places) { foreach ($places as $place) { $this->addPlace($place); } return $this; } /** * @param Transition[] $transitions * * @return $this */ public function addTransitions(array $transitions) { foreach ($transitions as $transition) { $this->addTransition($transition); } return $this; } /** * @return $this */ public function addTransition(Transition $transition) { $this->transitions[] = $transition; return $this; } /** * @return $this */ public function setMetadataStore(MetadataStoreInterface $metadataStore) { $this->metadataStore = $metadataStore; return $this; } /** * @deprecated since Symfony 4.1, use the clear() method instead. * * @return $this */ public function reset() { @trigger_error(sprintf('The "%s()" method is deprecated since Symfony 4.1, use the "clear()" method instead.', __METHOD__), E_USER_DEPRECATED); return $this->clear(); } }