Skip to content

Commit c4fdece

Browse files
committed
moved library-related code into the dedicated FormFlow folder
1 parent 326817f commit c4fdece

File tree

91 files changed

+223
-164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+223
-164
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
/composer-install.bat
55
/composer-update.bat
66
/composer.lock
7-
.DS_Store
87
/git.bat
98
/phpunit-tests-run-with-coverage.bat
109
/phpunit-tests-run.bat
@@ -14,3 +13,4 @@
1413
/vendors-install.bat
1514
/vendors-update.bat
1615
/vendors-whatsnew.bat
16+
.DS_Store

CraueFormFlowBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Craue\FormFlowBundle;
44

5-
use Craue\FormFlowBundle\Util\TempFileUtil;
5+
use Craue\FormFlowBundle\FormFlow\Util\TempFileUtil;
66
use Symfony\Component\HttpKernel\Bundle\Bundle;
77

88
/**

FormFlow/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/.buildpath
2+
/.project
3+
/.settings
4+
/git-subtree-split.bat
5+
/git.bat
6+
.DS_Store
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Craue\FormFlowBundle\Event;
3+
namespace Craue\FormFlowBundle\FormFlow\Event;
44

5-
use Craue\FormFlowBundle\Form\FormFlowInterface;
5+
use Craue\FormFlowBundle\FormFlow\FormFlowInterface;
66
use Symfony\Component\EventDispatcher\Event;
77

88
/**
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Craue\FormFlowBundle\Event;
3+
namespace Craue\FormFlowBundle\FormFlow\Event;
44

5-
use Craue\FormFlowBundle\Form\StepInterface;
5+
use Craue\FormFlowBundle\FormFlow\StepInterface;
66

77
/**
88
* Is called once to define steps for the flow.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Craue\FormFlowBundle\Event;
3+
namespace Craue\FormFlowBundle\FormFlow\Event;
44

5-
use Craue\FormFlowBundle\Form\FormFlowInterface;
5+
use Craue\FormFlowBundle\FormFlow\FormFlowInterface;
66

77
/**
88
* Is called once after binding all step's saved form data and determining the current step.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Craue\FormFlowBundle\Event;
3+
namespace Craue\FormFlowBundle\FormFlow\Event;
44

5-
use Craue\FormFlowBundle\Form\FormFlowInterface;
5+
use Craue\FormFlowBundle\FormFlow\FormFlowInterface;
66

77
/**
88
* Is called once for the current step after binding the request.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Craue\FormFlowBundle\Event;
3+
namespace Craue\FormFlowBundle\FormFlow\Event;
44

5-
use Craue\FormFlowBundle\Form\FormFlowInterface;
5+
use Craue\FormFlowBundle\FormFlow\FormFlowInterface;
66

77
/**
88
* Is called for each step after binding its saved form data.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Craue\FormFlowBundle\Event;
3+
namespace Craue\FormFlowBundle\FormFlow\Event;
44

5-
use Craue\FormFlowBundle\Form\FormFlowInterface;
5+
use Craue\FormFlowBundle\FormFlow\FormFlowInterface;
66

77
/**
88
* Is called once for the current step after validating the form data.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Craue\FormFlowBundle\Event;
3+
namespace Craue\FormFlowBundle\FormFlow\Event;
44

55
/**
66
* Is called once prior to binding any (neither saved nor request) data.

0 commit comments

Comments
 (0)