<?php

namespace ContainerRYWeSXx;

use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;

/*
 * @internal This class has been auto-generated by the Symfony Dependency Injection Component.
 */
class getStateMachine_ExpeditionTransferService extends App_KernelProdContainer
{
    /*
     * Gets the private 'state_machine.expedition_transfer' shared service.
     *
     * @return \Symfony\Component\Workflow\StateMachine
     */
    public static function do($container, $lazyLoad = true)
    {
        $a = ($container->services['event_dispatcher'] ?? self::getEventDispatcherService($container));

        if (isset($container->privates['state_machine.expedition_transfer'])) {
            return $container->privates['state_machine.expedition_transfer'];
        }
        $b = new \Symfony\Component\Workflow\Arc('to_process', 1);

        $instance = new \Symfony\Component\Workflow\StateMachine(new \Symfony\Component\Workflow\Definition(['pending', 'to_process', 'in_preparation', 'prepared', 'shipped', 'in_transit', 'delivered'], [new \Symfony\Component\Workflow\Transition('to_process', [new \Symfony\Component\Workflow\Arc('pending', 1)], [new \Symfony\Component\Workflow\Arc('to_process', 1)]), new \Symfony\Component\Workflow\Transition('start_preparation', [new \Symfony\Component\Workflow\Arc('to_process', 1)], [new \Symfony\Component\Workflow\Arc('in_preparation', 1)]), new \Symfony\Component\Workflow\Transition('prepare', [new \Symfony\Component\Workflow\Arc('in_preparation', 1)], [new \Symfony\Component\Workflow\Arc('prepared', 1)]), new \Symfony\Component\Workflow\Transition('ship', [new \Symfony\Component\Workflow\Arc('prepared', 1)], [new \Symfony\Component\Workflow\Arc('shipped', 1)]), new \Symfony\Component\Workflow\Transition('start_transit', [new \Symfony\Component\Workflow\Arc('shipped', 1)], [new \Symfony\Component\Workflow\Arc('in_transit', 1)]), new \Symfony\Component\Workflow\Transition('deliver', [new \Symfony\Component\Workflow\Arc('in_transit', 1)], [new \Symfony\Component\Workflow\Arc('delivered', 1)]), new \Symfony\Component\Workflow\Transition('rollback_to_process', [new \Symfony\Component\Workflow\Arc('in_preparation', 1)], [$b]), new \Symfony\Component\Workflow\Transition('rollback_to_process', [new \Symfony\Component\Workflow\Arc('prepared', 1)], [$b]), new \Symfony\Component\Workflow\Transition('rollback_to_process', [new \Symfony\Component\Workflow\Arc('shipped', 1)], [$b]), new \Symfony\Component\Workflow\Transition('rollback_to_process', [new \Symfony\Component\Workflow\Arc('in_transit', 1)], [$b]), new \Symfony\Component\Workflow\Transition('rollback_to_process', [new \Symfony\Component\Workflow\Arc('delivered', 1)], [$b])], ['pending'], new \Symfony\Component\Workflow\Metadata\InMemoryMetadataStore([], [], new \SplObjectStorage())), new \Symfony\Component\Workflow\MarkingStore\MethodMarkingStore(true, 'transferStatusValue'), $a, 'expedition_transfer', NULL);

        if (isset($container->privates['state_machine.expedition_transfer'])) {
            return $container->privates['state_machine.expedition_transfer'];
        }

        return $container->privates['state_machine.expedition_transfer'] = $instance;
    }
}
