for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\Annotated\Annotation;
use Doctrine\Common\Annotations\Annotation\Required;
abstract class Inheritance
{
public function __construct(
/** @Required() */
private string $type
) {
}
public function getType(): string
return $this->type;