Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Jonob/HTML/HTMLFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ class HTMLFacade extends Facade {
*
* @return string
*/
protected static function getFacadeAccessor() { return 'html'; }
protected static function getFacadeAccessor() { return 'jonob/html'; }

}
4 changes: 2 additions & 2 deletions src/Jonob/HTML/HTMLServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
});
Expand All @@ -42,7 +42,7 @@ public function register()
*/
public function provides()
{
return array('html');
return array('jonob/html');
}

}