for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Riclep\StoryblokForms\Blocks;
use Riclep\StoryblokForms\Input;
class LsfFileUploader extends Input
{
protected string $type = 'upload';
/**
* Returns the Input’s response after the form has been submitted and validated
*
* @param $input
* @return array
*/
public function response($input): array
return [
'label' => $this->label,
label
Riclep\StoryblokForms\Blocks\LsfFileUploader
__get
'name' => $this->name,
name
'response' => $input,
'type' => $this->type,
];
}