-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from valantic-CEC-Deutschland-GmbH/no-task/upd…
…ate-templates - bugfix missing use statement in dependencyProviders - added executer boilerplate - added runner boilerplate
- Loading branch information
Showing
11 changed files
with
118 additions
and
34 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
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
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
16 changes: 16 additions & 0 deletions
16
src/main/resources/templates/Zed/Business/Executor/$Executor.php.twig
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,16 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
namespace {{ organization }}\Zed\{{ module }}\Business\Executor; | ||
class Executor implements ExecutorInterface | ||
{ | ||
/** | ||
* @return void | ||
*/ | ||
public function execute(): void | ||
{ | ||
// TODO: Implement run() method. | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/resources/templates/Zed/Business/Executor/$ExecutorInterface.php.twig
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,13 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
namespace {{ organization }}\Zed\{{ module }}\Business\Executor; | ||
class ExecutorInterface | ||
{ | ||
/** | ||
* @return void | ||
*/ | ||
public function execute(): void; | ||
} |
16 changes: 16 additions & 0 deletions
16
src/main/resources/templates/Zed/Business/Runner/$Runner.php.twig
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,16 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
namespace {{ organization }}\Zed\{{ module }}\Business\Runner; | ||
class Runner implements RunnerInterface | ||
{ | ||
/** | ||
* @return void | ||
*/ | ||
public function run(): void | ||
{ | ||
// TODO: Implement run() method. | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/resources/templates/Zed/Business/Runner/$RunnerInterface.php.twig
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,13 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
namespace {{ organization }}\Zed\{{ module }}\Business\Runner; | ||
class RunnerInterface | ||
{ | ||
/** | ||
* @return void | ||
*/ | ||
public function run(): void; | ||
} |
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