for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Murtukov\PHPCodeGenerator;
abstract class OOPStructure extends DependencyAwareGenerator
{
use ScopedContentTrait;
use DocBlockTrait;
public string $name;
public function __construct(string $name)
$this->name = $name;
}
public static function new(string $name): self
return new static($name);