for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Spiral\Boot\Attribute;
use Spiral\Attributes\NamedArgumentConstructor;
#[\Attribute(\Attribute::TARGET_CLASS), NamedArgumentConstructor]
class BootloadConfig
{
public function __construct(
public array $args = [],
public bool $enabled = true,
public array $allowEnv = [],
public array $denyEnv = [],
public bool $override = true,
) {
}