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

9 years ago
  1. <?php namespace Sensory5\Shortcode\Classes;
  2. use October\Rain\Support\ServiceProvider as ServiceProviderParent;
  3. class ServiceProvider extends ServiceProviderParent
  4. {
  5. /**
  6. * Register the service provider.
  7. */
  8. public function register()
  9. {
  10. $this->app->bind('shortcode', function() {
  11. return new Shortcode;
  12. });
  13. }
  14. }