<?php

namespace {{namespace}};

use Framework\ServiceProvider;

class {{class_name}} extends ServiceProvider
{
    /**
     * Register the services to the application.
     *
     * @return void
     */
    public function register()
    {
        // Register your services here
    }

    /**
     * Boot the services.
     *
     * @return void
     */
    public function boot()
    {
        // Boot your services here (optional)
    }
}
