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

public evaluate ( FlowQuery $flowQuery, array $arguments ) : void
$flowQuery Neos\Eel\FlowQuery\FlowQuery the FlowQuery object
$arguments array the elements to add (as array in index 0)
Результат void
 /**
  * This corresponds to ${q(node).add([someOtherNode, ...]))}
  *
  * @test
  */
 public function addWithArrayArgumentAppendsToCurrentContext()
 {
     $object1 = new \stdClass();
     $object2 = new \stdClass();
     $flowQuery = new FlowQuery([$object1]);
     $arrayArgument = [$object2];
     $arguments = [$arrayArgument];
     $operation = new AddOperation();
     $operation->evaluate($flowQuery, $arguments);
     $this->assertSame([$object1, $object2], $flowQuery->getContext());
 }