phpowermove / php-code-generator

PHP code generator library
https://php-code-generator.readthedocs.org
Apache License 2.0
147 stars 43 forks source link

how to set extends #58

Open smartyaunt opened 5 years ago

smartyaunt commented 5 years ago

HI, brother, how to set extends class . have this api?

gossi commented 5 years ago

Use setParentClassName('Action'):

$class = new PhpClass('MyAction');
$class->setParentClassName('Action');