Files
spa-api/app/Providers/EventServiceProvider.php

29 lines
408 B
PHP
Raw Normal View History

2014-08-20 00:10:30 -05:00
<?php namespace App\Providers;
use Illuminate\Foundation\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider {
2014-08-12 11:58:09 -05:00
/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
//
}
/**
* Get the directories to scan for events.
*
* @return array
*/
public function scan()
{
return [
2014-08-20 23:32:40 -05:00
app_path(),
];
}
}