for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gnutix\Library\Model;
use Gnutix\Library\Helper\ArrayPopulatedObject;
final class Category extends ArrayPopulatedObject
{
protected string $id;
protected string $name;
public function getId(): string
return $this->id;
}
public function getName(): string
return $this->name;