for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Blackmine\Model;
/**
* @method mixed getId()
* @method setId(int $id): void
*/
class Identity extends AbstractModel
{
public function __construct(protected ?int $id = null)
}
public static function getRepositoryClass(): ?string
return null;