for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ExileeD\Inoreader\Objects;
class Category extends AbstractObject implements ObjectInterface
{
public function id(): string
return $this->data->id;
}
public function label(): string
return $this->data->label;