diff options
author | Sam Light <samlight1994@gmail.com> | 2022-08-18 20:32:43 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2022-08-18 20:32:43 +0100 |
commit | cb292e5674afde1ac99de9c9d3d2dbac5f8c0aee (patch) | |
tree | 5e027f87531cc387b8011ac411d52a4661fb54b8 /src |
Initial commit
Diffstat (limited to 'src')
-rw-r--r-- | src/ScormPlayerServiceProvider.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ScormPlayerServiceProvider.php b/src/ScormPlayerServiceProvider.php new file mode 100644 index 0000000..dc269be --- /dev/null +++ b/src/ScormPlayerServiceProvider.php @@ -0,0 +1,24 @@ +<?php + +namespace Lightscale\ScormPlayer; + +use Illuminate\Support\ServiceProvider; + +class ScormPlayerServiceProvider extends ServiceProvider +{ + + public function register() + { + \Log::debug('player regist'); + } + + public function boot() + { + // Load routes + //$this->loadRoutesFrom(__DIR__.'/../routes/web.php'); + + // Load views + //$this->loadViewsFrom(__DIR__.'/../resources/views', 'courier'); + } + +} |