Trying to organise the code better. It now temporarily doesn’t support update requests. Thought the spec defines them as SHOULD features and not MUST features. So safe for now :)
10 lines
147 B
PHP
10 lines
147 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Micropub;
|
|
|
|
interface MicropubHandlerInterface
|
|
{
|
|
public function handle(array $data);
|
|
}
|