forked from piece/piece-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PageFlow] Renamed the FSMBuilder class to PageFlowGenerator. (Issue p…
- Loading branch information
Showing
2 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,20 +38,21 @@ | |
namespace Piece\Flow\PageFlow; | ||
|
||
use Stagehand\FSM\Event; | ||
use Stagehand\FSM\FSMBuilder; | ||
use Stagehand\FSM\State; | ||
use Symfony\Component\Config\Definition\Processor; | ||
use Symfony\Component\Yaml\Yaml; | ||
|
||
/** | ||
* The FSM builder. | ||
* The configuration generator for PageFlow objects. | ||
* | ||
* @package Piece_Flow | ||
* @copyright 2007-2008, 2012 KUBO Atsuhiro <[email protected]> | ||
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License | ||
* @version Release: @package_version@ | ||
* @since Class available since Release 1.14.0 | ||
*/ | ||
class FSMBuilder | ||
class PageFlowGenerator | ||
{ | ||
/** | ||
* @var \Piece\Flow\PageFlow\PageFlow | ||
|
@@ -85,7 +86,7 @@ public function __construct(PageFlow $pageFlow, $definitionFile) | |
|
||
$this->definitionFile = $definitionFile; | ||
$this->pageFlow = $pageFlow; | ||
$this->fsmBuilder = new \Stagehand\FSM\FSMBuilder(); | ||
$this->fsmBuilder = new FSMBuilder(); | ||
} | ||
|
||
/** | ||
|