Added PhpStorm code style and file templates

This commit is contained in:
Dylan K. Taylor
2021-05-07 20:44:46 +01:00
parent 0c2ba66078
commit fb4796f35e
17 changed files with 159 additions and 1 deletions

View File

@ -0,0 +1,3 @@
#if(${TYPE_HINT} != ${RETURN_TYPE} && ${TYPE_HINT} != "")/** @return ${TYPE_HINT} */#end
public ${STATIC} function ${GET_OR_IS}${NAME}()#if(${RETURN_TYPE}): ${RETURN_TYPE}#else#end
{ return #if(${STATIC} == "static")self::$${FIELD_NAME};#else$this->${FIELD_NAME};#end }