Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
mu-plugins
/
vendor
/
wpex
/
godaddy-launch
/
includes
:
ServiceProvider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * The ServiceProvider class. * * @package GoDaddy */ namespace GoDaddy\WordPress\Plugins\Launch; /** * The ServiceProvider class. */ abstract class ServiceProvider { /** * The application instance. * * @var \GoDaddy\WordPress\Plugins\Launch\Application; */ protected $app; /** * Create a new service provider instance. * * @param \GoDaddy\WordPress\Plugins\Launch\Application $app The Application. */ public function __construct( $app ) { $this->app = $app; } /** * Register any application services. */ public function register() {} }