diff --git a/Templates/PHP/Classes.php b/Templates/PHP/Classes.php index 6791370..5506e97 100644 --- a/Templates/PHP/Classes.php +++ b/Templates/PHP/Classes.php @@ -22,26 +22,30 @@ * * */ -namespace path/of/the/Name_of_the_class { - - class Name_of_the_class { +namespace path\to\Name_of_class { + + class Name_of_class { + /* - * @var $var - * Var Desc + * + * + * @var $propertyName */ - public $var; + public $propertyName; /* - * nameOfYourFunctionInCamelCase + * nameOfMethodInCamelCase * - * Description + * + * + * @param (str|int|array|boolean) $paramName * - * @param (str|int|array|boolean|void) $varName What it does * @return (str|int|array|boolean|void) */ - function nameOfYourFunctionInCamelCase() { + public function nameOfMethodInCamelCase($paramName) { } + } -} \ No newline at end of file +}