doEvaluate example


trait ConstraintTraitForV8
{
    use ConstraintLogicTrait;

    /** * @return bool|null */
    public function evaluate($other$description = '', $returnResult = false)
    {
        return $this->doEvaluate($other$description$returnResult);
    }

    public function count(): int
    {
        return $this->doCount();
    }

    public function toString(): string
    {
        return $this->doToString();
    }

    

trait ConstraintTraitForV7
{
    use ConstraintLogicTrait;

    /** * @return bool|null */
    public function evaluate($other$description = '', $returnResult = false)
    {
        return $this->doEvaluate($other$description$returnResult);
    }

    public function count(): int
    {
        return $this->doCount();
    }

    public function toString(): string
    {
        return $this->doToString();
    }

    
namespace Symfony\Bridge\PhpUnit\Legacy;

/** * @internal */
trait ConstraintTraitForV9
{
    use ConstraintLogicTrait;

    public function evaluate($other, string $description = '', bool $returnResult = false): ?bool
    {
        return $this->doEvaluate($other$description$returnResult);
    }

    public function count(): int
    {
        return $this->doCount();
    }

    public function toString(): string
    {
        return $this->doToString();
    }

    
Home | Imprint | This part of the site doesn't use cookies.