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

29 lines
411 B
PHP
Raw Normal View History

<?php namespace 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 [
app_path().'/src',
];
}
}