Netbeans code templates' modifiers
- by hsz
Hello !
I set a new PHP code template in Netbeans:
/* @var $$${name}Table Model_${name}_Table */
$$${name}Table = Container::get('model')->get('${name}_Table');
and if I use as ${name} some value - shop - I have in output:
/* @var $shopTable Model_shop_Table */
$shopTable = Container::get('model')->get('shop_Table');
Is it possible to add some modifier to the second and fourth ${name} so I will have it started with upper letter ?
Shop_Table instead of shop_Table