scenario-logic-base.php
2 years ago
scenario-logic-repository.php
2 years ago
scenario-view-base.php
2 years ago
scenarios-manager-abstract.php
2 years ago
scenarios-view-repository.php
2 years ago
scenario-logic-repository.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways\Scenarios_Abstract; |
| 5 | |
| 6 | use JFB_Components\Repository\Repository_Pattern_Trait; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | abstract class Scenario_Logic_Repository { |
| 14 | |
| 15 | use Repository_Pattern_Trait; |
| 16 | } |
| 17 |