for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Buzz\Message;
class FormRequestBuilder
{
/**
* @var array
*/
private $data;
private $files;
public function __construct(array $data = [], array $files = [])
$this->data = $data;
$this->files = $files;
}
public function addField(string $name, string $value): void
$this->data[$name] = $value;
public function addFile(string $name, string $path, string $contentType = null, string $filename = null): void
$this->files[$name] = [
'path' => $path,
'contentType' => $contentType,
'filename' => $filename,
];
public function build(): array
$data = $this->data;
foreach ($this->files as $name => $file) {
$data[$name] = $file;
return $data;
* Reset the builder.
public function reset(): void
$this->data = [];
$this->files = [];