webmentions/src/Endpoint.php

9 lines
206 B
PHP
Raw Normal View History

2023-03-09 09:48:08 +00:00
<?php declare(strict_types=1);
namespace Lewisdale\Webmentions;
use Lewisdale\Webmentions\Gateways\WebmentionGatewayInterface;
class Endpoint {
private readonly WebmentionGatewayInterface $gateway;
}