for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace pjpawel\LightApi\Command;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class AsCommand
{
public string $name;
public bool $prod;
public function __construct(string $name, bool $prod = true)
$this->name = $name;
$this->prod = $prod;
}