PHP 클래스 SM\Factory\AbstractFactory

상속: implements SM\Factory\ClearableFactoryInterface
파일 보기 프로젝트 열기: winzou/state-machine 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$configs array
$stateMachines array

공개 메소드들

메소드 설명
__construct ( array $configs )
addConfig ( array $config, string $graph = 'default' ) Adds a new config
clear ( ) {@inheritDoc}
get ( $object, $graph = 'default' ) {@inheritDoc}

보호된 메소드들

메소드 설명
createStateMachine ( $object, array $config ) : SM\StateMachine\StateMachineInterface Create a state machine for the given object and config

메소드 상세

__construct() 공개 메소드

public __construct ( array $configs )
$configs array Array of configs for the available state machines

addConfig() 공개 메소드

Adds a new config
public addConfig ( array $config, string $graph = 'default' )
$config array
$graph string

clear() 공개 메소드

{@inheritDoc}
public clear ( )

createStateMachine() 추상적인 보호된 메소드

Create a state machine for the given object and config
abstract protected createStateMachine ( $object, array $config ) : SM\StateMachine\StateMachineInterface
$object
$config array
리턴 SM\StateMachine\StateMachineInterface

get() 공개 메소드

{@inheritDoc}
public get ( $object, $graph = 'default' )

프로퍼티 상세

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

protected array $configs
리턴 array

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

protected array $stateMachines
리턴 array