src/Helpers/CallConventions/CallConventionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Smuuf\Primi\Helpers\CallConventions;

use \Smuuf\Primi\Context;
use \Smuuf\Primi\Values\AbstractValue;
use \Smuuf\Primi\Structures\CallArgs;

interface CallConventionInterface {

    public function call(CallArgs $args, Context $ctx): ?AbstractValue;

}