Renaming folders.

This commit is contained in:
Taylor Otwell
2014-08-18 23:42:49 -05:00
parent 79bcb450dd
commit 3ffbb5d6ba
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php namespace Providers;
use Illuminate\Support\ServiceProvider;
class LogServiceProvider extends ServiceProvider {
/**
* Configure the application's logging facilities.
*
* @return void
*/
public function boot()
{
// Here we will configure the error logger setup for the application which
// is built on top of the wonderful Monolog library. By default we will
// build a basic log file setup which creates a single file for logs.
$this->app['log']->useFiles(
storage_path().'/logs/laravel.log'
);
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
}