for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\ResourceLinks\Formatters;
class DefaultFormatter implements Formatter
{
public function format(Endpoint $endpoint): array
return [
"{$endpoint->prefix}{$endpoint->name}" => [
'method' => $endpoint->method,
'action' => $endpoint->action,
],
];
}