fix typo
This commit is contained in:
@@ -36,10 +36,10 @@ class IncludesType extends \Espo\Core\Formula\Functions\Base
|
||||
public function process(\StdClass $item)
|
||||
{
|
||||
if (!property_exists($item, 'value') || !is_array($item->value)) {
|
||||
throw new Error('Value for \'Array\\Includses\' item is not array.');
|
||||
throw new Error('Value for \'Array\\Includes\' item is not array.');
|
||||
}
|
||||
if (count($item->value) < 2) {
|
||||
throw new Error('Bad arguments passed to \'Array\\Includses\'.');
|
||||
throw new Error('Bad arguments passed to \'Array\\Includes\'.');
|
||||
}
|
||||
$list = $this->evaluate($item->value[0]);
|
||||
$needle = $this->evaluate($item->value[1]);
|
||||
|
||||
Reference in New Issue
Block a user