home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Log
➕ New
📤 Upload
✎ Editing:
LogServiceProvider.php
← Back
<?php namespace Illuminate\Log; use Monolog\Logger; use Illuminate\Support\ServiceProvider; class LogServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = true; /** * Register the service provider. * * @return void */ public function register() { $logger = new Writer( new Logger($this->app['env']), $this->app['events'] ); // Once we have an instance of the logger we'll bind it as an instance into // the container so that it is available for resolution. We'll also bind // the PSR Logger interface to resolve to this Monolog implementation. $this->app->instance('log', $logger); $this->app->bind('Psr\Log\LoggerInterface', function($app) { return $app['log']->getMonolog(); }); // If the setup Closure has been bound in the container, we will resolve it // and pass in the logger instance. This allows this to defer all of the // logger class setup until the last possible second, improving speed. if (isset($this->app['log.setup'])) { call_user_func($this->app['log.setup'], $logger); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return array('log', 'Psr\Log\LoggerInterface'); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel