jeyroik/toncenter-php-sdk

View on GitHub
src/interfaces/transactions/dispatchers/conditions/ICondition.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace tonc\interfaces\transactions\dispatchers\conditions;

interface ICondition
{
    public function __invoke($source, $target): bool;
}