Lines Matching refs:addStmt
273 ->addStmt($factory->use('Foo\Bar\SomeOtherClass'))
274 ->addStmt($factory->use('Foo\Bar')->as('A'))
275 ->addStmt($factory->useFunction('strlen'))
276 ->addStmt($factory->useConst('PHP_VERSION'))
277 ->addStmt($factory
284 ->addStmt($factory->useTrait('FirstTrait'))
286 ->addStmt($factory->useTrait('SecondTrait', 'ThirdTrait')
292 ->addStmt($factory->method('firstMethod')
296 ->addStmt($factory->method('someMethod')
306 ->addStmt($factory->method('anotherMethod')
312 ->addStmt(new Expr\Print_(new Expr\Variable('someParam'))))
314 ->addStmt($factory->property('someProperty')->makeProtected())
315 ->addStmt($factory->property('anotherProperty')
318 ->addStmt($factory->property('integerProperty')
322 ->addStmt($factory->classConst('CONST_WITH_ATTRIBUTE', 1)
327 ->addStmt($factory->classConst("FIRST_CLASS_CONST", 1)