<?php

namespace Eform\Instruction;

use Eform\Instruction\Actions\InstructionCategoryActions;
use Eform\Instruction\Actions\InstructionsActions;


class Instruction
{
    /**
     * Return select options instruction for the module.
     *
     * @param string $module
     * @param array $request
     *
     * @return array
     */
    public function options($module = 'instruction', $request = []) :array
    {
        if ($module == 'instruction') {
            return InstructionActions::run('options', $request);
        }

    }
}