<?php

namespace Eform\Instruction\Providers;

use Litepie\Foundation\Support\Providers\ActionServiceProvider as ServiceProvider;

class ActionServiceProvider extends ServiceProvider
{
    /**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    protected $defer = true;

    /**
     * Register the service provider.
     *
     * @return void
     */
    public function actions()
    {
        return [
            \Eform\Instruction\Models\InstructionCategory::class
                 => config('eform.instruction.instruction_category.actions')        \Eform\Instruction\Models\Instructions::class
                 => config('eform.instruction.instructions.actions')
            ];
    }

}