PHP 클래스 SM\StateMachine\StateMachine

상속: implements SM\StateMachine\StateMachineInterface
파일 보기 프로젝트 열기: winzou/state-machine

보호된 프로퍼티들

프로퍼티 타입 설명
$callbackFactory SM\Callback\CallbackFactoryInterface
$config array
$dispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface
$object object

공개 메소드들

메소드 설명
__construct ( object $object, array $config, Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher = null, SM\Callback\CallbackFactoryInterface $callbackFactory = null )
apply ( $transition, $soft = false ) {@inheritDoc}
can ( $transition ) {@inheritDoc}
getGraph ( ) {@inheritDoc}
getObject ( ) {@inheritDoc}
getPossibleTransitions ( ) {@inheritDoc}
getState ( ) {@inheritDoc}

보호된 메소드들

메소드 설명
callCallbacks ( SM\Event\TransitionEvent $event, string $position ) : boolean Builds and calls the defined callbacks
setState ( string $state ) Set a new state to the underlying object

메소드 상세

__construct() 공개 메소드

public __construct ( object $object, array $config, Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher = null, SM\Callback\CallbackFactoryInterface $callbackFactory = null )
$object object Underlying object for the state machine
$config array Config array of the graph
$dispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface EventDispatcher or null not to dispatch events
$callbackFactory SM\Callback\CallbackFactoryInterface CallbackFactory or null to use the default one

apply() 공개 메소드

{@inheritDoc}
public apply ( $transition, $soft = false )

callCallbacks() 보호된 메소드

Builds and calls the defined callbacks
protected callCallbacks ( SM\Event\TransitionEvent $event, string $position ) : boolean
$event SM\Event\TransitionEvent
$position string
리턴 boolean

can() 공개 메소드

{@inheritDoc}
public can ( $transition )

getGraph() 공개 메소드

{@inheritDoc}
public getGraph ( )

getObject() 공개 메소드

{@inheritDoc}
public getObject ( )

getPossibleTransitions() 공개 메소드

{@inheritDoc}

getState() 공개 메소드

{@inheritDoc}
public getState ( )

setState() 보호된 메소드

Set a new state to the underlying object
protected setState ( string $state )
$state string

프로퍼티 상세

$callbackFactory 보호되어 있는 프로퍼티

protected CallbackFactoryInterface,SM\Callback $callbackFactory
리턴 SM\Callback\CallbackFactoryInterface

$config 보호되어 있는 프로퍼티

protected array $config
리턴 array

$dispatcher 보호되어 있는 프로퍼티

protected EventDispatcherInterface,Symfony\Component\EventDispatcher $dispatcher
리턴 Symfony\Component\EventDispatcher\EventDispatcherInterface

$object 보호되어 있는 프로퍼티

protected object $object
리턴 object