I want to create my own file templates. However something is wrong with variables, since I am prompted for such variables as namespace. Quick example:
<?php
namespace ${NAMESPACE};
class ${NAME}
{
}
This prompts me for both namespace and name, while I should only provide a file name. How can I make PHPStorm to auto-detect its dedicated variables?
I am using 7.1.3 version on latest OSX.