Skip to content

Instantly share code, notes, and snippets.

@geerteltink
Created April 12, 2015 09:41
Show Gist options
  • Save geerteltink/8d58570433699127d909 to your computer and use it in GitHub Desktop.
Save geerteltink/8d58570433699127d909 to your computer and use it in GitHub Desktop.
PhpStorm file and code templates (Apache Velocity)
#set($typeHintText = "$TYPE_HINT ")
## First we check against a blacklist of primitive and other common types used in documentation.
#set($nonTypeHintableTypes = ["", "string", "int", "mixed", "number", "void", "object", "real", "double", "float", "resource", "null", "bool", "boolean"])
#foreach($nonTypeHintableType in $nonTypeHintableTypes)
#if ($nonTypeHintableType == $TYPE_HINT)
#set($typeHintText = "")
#end
#end
## Make sure the type hint actually looks like a legal php class name(permitting namespaces too) for future proofing reasons.
## This is important because PSR-5 is coming soon, and will allow documentation of types with syntax like SplStack<int>
#if (!$TYPE_HINT.matches('^((\\)?[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]+)+$'))
#set($typeHintText = "")
#end
## Next, we check if this is using the array syntax like "MyClass[]", and type hint it as a plain array
#if ($TYPE_HINT.endsWith("[]"))
#set($typeHintText = "array ")
#end
/**
* @param ${TYPE_HINT} $${PARAM_NAME}
#if (${STATIC} != "static" && ${NAME} != "Id")
*
* @return $this
#end
*/
public ${STATIC} function set${NAME}($typeHintText$${PARAM_NAME})
{
#if (${STATIC} == "static")
self::$${FIELD_NAME} = $${PARAM_NAME};
#else
$this->${FIELD_NAME} =#if (${TYPE_HINT} == "boolean") (bool)#end $${PARAM_NAME};
#if (${NAME} != "Id") return $this;#end
#end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment