Habari\ControlStorage::__construct PHP Метод

__construct() публичный Метод

Construct a basic FormStorage object
public __construct ( Callable | string $load, $save )
$load Callable | string A function to call to load the control value, OR a non-callable
$save
    public function __construct($load, $save)
    {
        $this->loader = $load;
        $this->saver = $save;
    }