Refactoring names

This commit is contained in:
Patrick Ward
2015-10-23 15:34:31 -04:00
parent 88118e8a4c
commit 61620bdcf1
4 changed files with 23 additions and 39 deletions

View File

@ -0,0 +1,19 @@
<?php namespace Sensory5\Shortcode\Classes;
use October\Rain\Support\ServiceProvider as ServiceProviderParent;
class ServiceProvider extends ServiceProviderParent
{
/**
* Register the service provider.
*/
public function register()
{
$this->app->bind('shortcode', function() {
return new Shortcode();
});
}
}