PHP Class izzum\statemachine\loader\YAML

The yaml string can contain one or more machine definitions. The correct machine will be found from the yaml structure. This class provides a way to load yaml from a file on your file system (fast access). This class needs the php yaml module to operate, which can be found via php.net
Inheritance: implements izzum\statemachine\loader\Loader
Afficher le fichier Open project: rolfvreijdenberger/izzum-statemachine Class Usage Examples

Méthodes publiques

Méthode Description
__construct ( string $yaml )
__toString ( )
createFromFile ( string $filename ) : YAML creates an instance of this class with the data loaded from a file.
getYAML ( )
load ( StateMachine $stateMachine ) {@inheritDoc}
toString ( )

Method Details

__construct() public méthode

public __construct ( string $yaml )
$yaml string optional a valid yaml string as specified in assets/yaml/example.yaml

__toString() public méthode

public __toString ( )

createFromFile() public static méthode

creates an instance of this class with the data loaded from a file.
public static createFromFile ( string $filename ) : YAML
$filename string eg: __DIR__ . '/../../configuration.yaml'
Résultat YAML an instance of YAML with the data read from the file

getYAML() public méthode

public getYAML ( )

load() public méthode

{@inheritDoc}
public load ( StateMachine $stateMachine )
$stateMachine izzum\statemachine\StateMachine

toString() public méthode

public toString ( )