| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace FL\Assistant\Providers; |
| 5 |
|
| 6 |
use FL\Assistant\System\Contracts\ServiceProviderAbstract; |
| 7 |
|
| 8 |
class CloudServiceProvider extends ServiceProviderAbstract { |
| 9 |
|
| 10 |
public function bootstrap() { |
| 11 |
// allow this to be overridden in wp-config.php for development |
| 12 |
if ( ! defined( 'FL_ASSISTANT_CLOUD_URL' ) ) { |
| 13 |
define( 'FL_ASSISTANT_CLOUD_URL', 'http://localhost:8000/api' ); |
| 14 |
} |
| 15 |
} |
| 16 |
} |
| 17 |
|