-
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.
#5 Everything renamed again. Now the event handling system seems to b…
…e coherent.
- Loading branch information
automatix
committed
Apr 29, 2018
1 parent
3dc6253
commit 04fa534
Showing
19 changed files
with
55 additions
and
49 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
6 changes: 3 additions & 3 deletions
6
...ess/Listeners/AbstractProcessListener.php → ...tHandlers/AbstractProcessEventHandler.php
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
4 changes: 2 additions & 2 deletions
4
src/Process/Listeners/PoiListener.php → ...ocess/ProcessEventHandlers/PoiHandler.php
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
4 changes: 2 additions & 2 deletions
4
src/Process/Listeners/QuestListener.php → ...ess/ProcessEventHandlers/QuestHandler.php
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
4 changes: 2 additions & 2 deletions
4
src/Process/Listeners/StepListener.php → ...cess/ProcessEventHandlers/StepHandler.php
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
namespace App\Process\StateEventHandlers; | ||
|
||
abstract class AbstractStateEventHandler implements StateHandlerInterface | ||
{ | ||
|
||
} |
File renamed without changes.
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Quest; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class AccessFailedHandler implements StateHandlerInterface | ||
* Class AccessFailedHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class AccessFailedHandler implements StateHandlerInterface | ||
class AccessFailedHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Quest; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class AccessProcessingHandler implements StateHandlerInterface | ||
* Class AccessProcessingHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class AccessProcessingHandler implements StateHandlerInterface | ||
class AccessProcessingHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Quest; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class CompletedHandler implements StateHandlerInterface | ||
* Class CompletedHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class CompletedHandler implements StateHandlerInterface | ||
class CompletedHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
File renamed without changes.
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Quest; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class FinishedHandler implements StateHandlerInterface | ||
* Class FinishedHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class FinishedHandler implements StateHandlerInterface | ||
class FinishedHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Quest; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class PlayingHandler implements StateHandlerInterface | ||
* Class PlayingHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class PlayingHandler implements StateHandlerInterface | ||
class PlayingHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Poi; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class StartedHandler implements StateHandlerInterface | ||
* Class StartedHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class StartedHandler implements StateHandlerInterface | ||
class StartedHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Quest; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class StartedHandler implements StateHandlerInterface | ||
* Class StartedHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class StartedHandler implements StateHandlerInterface | ||
class StartedHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
namespace App\Services\Process\Internal\StateHandlers\Quest; | ||
|
||
use App\Base\Enums\Processes\EventNames\AbstractEventName; | ||
use App\Process\StateHandlers\StateHandlerInterface; | ||
use App\Process\StateEventHandlers\AbstractStateEventHandler; | ||
use Symfony\Component\EventDispatcher\Event; | ||
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | ||
|
||
/** | ||
* Class StartedHandler implements StateHandlerInterface | ||
* Class StartedHandler extends AbstractStateEventHandler | ||
* | ||
* @package App\Services\Process\Internal\StateHandlers\Quest | ||
* @author Ilya Khanataev <[email protected]> | ||
*/ | ||
class StartedHandler implements StateHandlerInterface | ||
class StartedHandler extends AbstractStateEventHandler | ||
{ | ||
|
||
public function handle( | ||
|
2 changes: 1 addition & 1 deletion
2
...s/StateHandlers/StateHandlerInterface.php → ...teEventHandlers/StateHandlerInterface.php
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