You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
366 B
19 lines
366 B
<?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;
|
|
});
|
|
}
|
|
|
|
}
|
|
|