.config
3 years ago
actions-abstract
3 years ago
assets
3 years ago
db-models
3 years ago
export
3 years ago
legacy
3 years ago
meta-boxes
3 years ago
pages
3 years ago
paypal
3 years ago
query-views
3 years ago
rest-api
3 years ago
scenarios-abstract
3 years ago
tab-handlers
3 years ago
table-views
3 years ago
.babelrc
3 years ago
.gitattributes
3 years ago
base-gateway-action.php
3 years ago
base-gateway.php
3 years ago
base-scenario-gateway.php
3 years ago
gateways-editor-data.php
3 years ago
legacy-base-gateway.php
3 years ago
migrate-legacy-data.php
3 years ago
module.php
3 years ago
package.json
3 years ago
scenario-item.php
3 years ago
scenario-item.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways; |
| 5 | |
| 6 | use JFB_Components\Repository\Repository_Static_Item_It; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | interface Scenario_Item extends Repository_Static_Item_It { |
| 14 | |
| 15 | public static function scenario_id(); |
| 16 | |
| 17 | } |
| 18 |