<?php
use Chubbyphp\Serialization\Link\Link;
$link = new Link(
'/api/model',
['model'],
['method' => 'GET']
);
echo $link->getHref();
// '/api/model'
print_r($link->getRels());
// ['model']
print_r($link->getAttributes());
// ['method' => 'GET']
This repository was archived by the owner on Mar 12, 2025. It is now read-only.