Lines Matching refs:addStmt
32 ->addStmt($factory->use('Some\Other\Thingy')->as('SomeClass'))
33 ->addStmt($factory->useFunction('strlen'))
34 ->addStmt($factory->useConst('PHP_VERSION'))
35 ->addStmt($factory->class('SomeOtherClass')
40 ->addStmt($factory->useTrait('FirstTrait'))
42 ->addStmt($factory->useTrait('SecondTrait', 'ThirdTrait')
48 ->addStmt($factory->method('someMethod')
60 ->addStmt($factory->method('anotherMethod')
64 ->addStmt(new Node\Expr\Print_(new Node\Expr\Variable('someParam')))
68 ->addStmt($factory->property('someProperty')->makeProtected())
69 ->addStmt($factory->property('anotherProperty')->makePrivate()->setDefault(array(1, 2, 3)))