API
4 months ago
Admin
4 months ago
Blocks
4 months ago
CLI
4 months ago
Container
4 months ago
Data
4 months ago
Integrations
4 months ago
REST
4 months ago
Theme
4 months ago
Tools
4 months ago
WP
4 months ago
Whatsit
4 months ago
Config_Handler.php
4 months ago
Integration.php
4 months ago
Permissions.php
4 months ago
Pod_Manager.php
4 months ago
Service_Provider.php
4 months ago
Service_Provider_Base.php
4 months ago
Static_Cache.php
4 months ago
Whatsit.php
4 months ago
Wisdom_Tracker.php
4 months ago
Service_Provider_Base.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Pods; |
| 4 | |
| 5 | // Don't load directly. |
| 6 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | die( '-1' ); |
| 8 | } |
| 9 | |
| 10 | use Pods\Prefixed\lucatume\DI52\ServiceProvider; |
| 11 | |
| 12 | /** |
| 13 | * The service provider logic. |
| 14 | * |
| 15 | * @since 2.9.18 |
| 16 | */ |
| 17 | abstract class Service_Provider_Base extends ServiceProvider { |
| 18 | // This is just a class that wraps the DI52 service provider class. |
| 19 | } |
| 20 |