. */ declare(strict_types=1); namespace SP\Tests\Stubs; use SP\Domain\Common\Models\Model; /** * Class ModelStub */ final class ModelStub extends Model { protected ?int $id = null; protected ?string $name = null; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } }