federationlib/src/FederationLib/Interfaces/ValidateInterface.php

13 lines
No EOL
238 B
PHP

<?php
namespace FederationLib\Interfaces;
interface ValidateInterface
{
/**
* @return void
*/
public function validate(): void;
// TODO: There could be a better way to do this
}