Closed luisdalmolin closed 10 years ago
Just a quick fix to the SanitizerServiceProvider.php file to use $app of $this->app inside a closure and be compatible with PHP 5.3.
SanitizerServiceProvider.php
$app
$this->app
public function register() { $this->app['sanitizer'] = $this->app->share(function ($app) { return new Sanitizer($app); }); }
Just a quick fix to the
SanitizerServiceProvider.php
file to use$app
of$this->app
inside a closure and be compatible with PHP 5.3.