Neos\Eel\Tests\Unit\AbstractEvaluatorTest::stringConcatenations PHP Метод

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

public stringConcatenations ( ) : array
Результат array
    public function stringConcatenations()
    {
        $c = new Context(['foo' => 'bar']);
        return [['"a" + "b"', $c, 'ab'], ['2 + "b"', $c, '2b'], ['foo + "b"', $c, 'barb'], ['foo + " x " + foo', $c, 'bar x bar']];
    }