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 Subscription extends AbstractObject implements ObjectInterface
{
public function id(): string
return $this->data->id;
}
public function title(): string
return $this->data->title;
public function categories(): array
return $this->data->categories;
public function sortId(): string
return $this->data->sortid;
public function firstItemMsec(): string
return $this->data->firstitemmsec;
public function url(): string
return $this->data->url;
public function htmlUrl(): string
return $this->data->htmlUrl;
public function iconUrl(): string
return $this->data->iconUrl;