PhpParser\NodeAbstractTest::provideNodes PHP Method

provideNodes() public method

public provideNodes ( )
    public function provideNodes()
    {
        $attributes = array('startLine' => 10, 'comments' => array(new Comment('// Comment' . "\n"), new Comment\Doc('/** doc comment */')));
        $node = new DummyNode('value1', 'value2', $attributes);
        $node->notSubNode = 'value3';
        return array(array($attributes, $node));
    }