Exakat\Analyzer\Analyzer::isLess PHP Метод

isLess() публичный Метод

public isLess ( $property, $value )
    public function isLess($property, $value = 0)
    {
        if (is_int($value)) {
            $this->addMethod('filter{ it.get().value("' . $property . '").toLong() < ' . $value . '}');
        } else {
            // this is a variable name
            $this->addMethod("filter{ it.get().value('{$property}').toLong() < {$value};}", $value);
        }
        return $this;
    }
Analyzer