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
:
GoDaddyStylesServiceProvider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * The GoDaddyStylesServiceProvider class. * * @package GoDaddy */ namespace GoDaddy\WordPress\Plugins\Launch; use GoDaddy\WordPress\Plugins\Launch\Dependencies\GoDaddy\Styles\StylesLoader; use GoDaddy\WordPress\Plugins\Launch\ServiceProvider; /** * GoDaddyStylesServiceProvider class. */ class GoDaddyStylesServiceProvider extends ServiceProvider { /** * This method will be used for hooking into WordPress with actions/filters. * * @return void */ public function boot() { StylesLoader::getInstance()->setBasePath( $this->app->basePath( 'includes/Dependencies/GoDaddy/Styles/' ) ); StylesLoader::getInstance()->setBaseUrl( $this->app->baseUrl( 'includes/Dependencies/GoDaddy/Styles/' ) ); StylesLoader::getInstance()->boot(); } /** * This method will be used to bind things to the container. * * @return void */ public function register() {} }