for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GarbuzIvan\LaravelGeneratorPackage\Form;
use GarbuzIvan\LaravelGeneratorPackage\Configuration;
class Form
{
protected Configuration $config;
/**
* Form constructor.
* @param Configuration $config
*/
public function __construct(Configuration $config)
$this->config = $config;
}