Files
shortcode-plugin/classes/ServiceProvider.php

20 lines
366 B
PHP
Raw Normal View History

2015-10-23 15:34:31 -04:00
<?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() {
2015-10-23 16:00:25 -04:00
return new Shortcode;
2015-10-23 15:34:31 -04:00
});
}
}