Refactoring names
This commit is contained in:
19
classes/ServiceProvider.php
Normal file
19
classes/ServiceProvider.php
Normal 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();
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user