<?php
declare(strict_types=1);
namespace Tests\Adawolfa\Retrofit;
use Adawolfa\Retrofit\HTTP\POST;
interface ParentService
{
#[POST]
public function root(): string;
}
<?php
declare(strict_types=1);
namespace Tests\Adawolfa\Retrofit;
use Adawolfa\Retrofit\HTTP\POST;
interface ParentService
{
#[POST]
public function root(): string;
}