diff --git a/src/Jonob/HTML/HTMLFacade.php b/src/Jonob/HTML/HTMLFacade.php index ce6d8bb..27795a3 100644 --- a/src/Jonob/HTML/HTMLFacade.php +++ b/src/Jonob/HTML/HTMLFacade.php @@ -9,6 +9,6 @@ class HTMLFacade extends Facade { * * @return string */ - protected static function getFacadeAccessor() { return 'html'; } + protected static function getFacadeAccessor() { return 'jonob/html'; } } \ No newline at end of file diff --git a/src/Jonob/HTML/HTMLServiceProvider.php b/src/Jonob/HTML/HTMLServiceProvider.php index 9340f13..d4d7f87 100644 --- a/src/Jonob/HTML/HTMLServiceProvider.php +++ b/src/Jonob/HTML/HTMLServiceProvider.php @@ -29,7 +29,7 @@ public function boot() */ public function register() { - $this->app['html'] = $this->app->share(function($app) + $this->app['jonob/html'] = $this->app->share(function($app) { return new HTML($app['url']); }); @@ -42,7 +42,7 @@ public function register() */ public function provides() { - return array('html'); + return array('jonob/html'); } } \ No newline at end of file