gnu-social/plugins/ActivityPub/Util/Type/ValidatorInterface.php

22 lines
529 B
PHP

<?php
/*
* This file is part of the ActivityPhp package.
*
* Copyright (c) landrok at github.com/landrok
*
* For the full copyright and license information, please see
* <https://github.com/landrok/activitypub/blob/master/LICENSE>.
*/
namespace Plugin\ActivityPub\Util\Type;
/**
* \Plugin\ActivityPub\Util\Type\ValidatorInterface specifies methods that must be
* implemented for attribute (property) validation.
*/
interface ValidatorInterface
{
public function validate(mixed $value, mixed $container): bool;
}