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,6 @@
/** @return $this */
public function set${NAME}(#if (${SCALAR_TYPE_HINT})${SCALAR_TYPE_HINT} #else#end$${PARAM_NAME})#if(${RETURN_TYPE}): self#else#end
{
$this->${FIELD_NAME} = $${PARAM_NAME};
return $this;
}