![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/jsdecena/mcpro/src/ |
<?php namespace Jsdecena\MCPro; use Illuminate\Support\ServiceProvider; class McproServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = false; /** * Set up the publishing of configuration */ public function boot() { $this->publishes([ __DIR__.'/database/migrations' => database_path('migrations') ], 'migrations'); $this->publishes([ __DIR__.'/database/seeds' => database_path('seeds') ], 'seed'); } /** * Register the Mailchimp Instance to be set up with the API-key. * Then, the IoC-container can be used to get a Mailchimp instance ready for use. * * @return void */ public function register() { include __DIR__.'/routes.php'; } }