federationlib/src/FederationLib/Interfaces/ValidateInterface.php

13 lines
238 B
PHP
Raw Normal View History

2023-06-23 02:05:48 -04:00
<?php
namespace FederationLib\Interfaces;
interface ValidateInterface
{
/**
* @return void
*/
public function validate(): void;
// TODO: There could be a better way to do this
}