This commit is contained in:
2025-10-02 16:07:12 +02:00
parent e01874a1e4
commit 796520fb0c
1796 changed files with 655105 additions and 16 deletions

View File

@@ -0,0 +1,21 @@
<?php
/**
* User: Damian Zamojski (br33f)
* Date: 22.06.2021
* Time: 11:10
*/
namespace Br33f\Ga4\MeasurementProtocol\Dto;
use Br33f\Ga4\MeasurementProtocol\Exception\ValidationException;
interface RequestValidateInterface
{
/**
* Method validates object. Throws exception if error, returns true if valid.
* @param string|null $context
* @return boolean
* @throws ValidationException
*/
public function validate(?string $context);
}