<?php

namespace {{studly_author}}\{{studly_name}};

use Igniter\System\Classes\BaseExtension;

/**
 * {{name}} Extension Information File
 */
class Extension extends BaseExtension
{
    /**
     * Register method, called when the extension is first registered.
     *
     * @return void
     */
    public function register()
    {

    }

    /**
     * Boot method, called right before the request route.
     *
     * @return void
     */
    public function boot()
    {

    }

    /**
     * Registers any front-end components implemented in this extension.
     *
     * @return array
     */
    public function registerComponents()
    {
        return [
// Remove this line and uncomment the line below to activate
//            '{{studly_author}}\{{studly_name}}\Components\MyComponent' => 'myComponent',
        ];
    }

    /**
     * Registers any admin permissions used by this extension.
     *
     * @return array
     */
    public function registerPermissions()
    {
// Remove this line and uncomment block to activate
        return [
//            '{{title_author}}.{{studly_name}}.SomePermission' => [
//                'description' => 'Some permission',
//                'group' => 'igniter::admin.permissions.name',
//            ],
        ];
    }
}
