remove template class

This commit is contained in:
Cyprian Beauvois 2019-02-08 16:43:49 +01:00
parent 818ad5b349
commit e70ca74d73
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
<?php namespace Buonzz\Template;
/**
* A sample class
*
* Use this section to define what this class is doing, the PHPDocumentator will use this
* to automatically generate an API documentation using this information.
*
* @author yourname
*/
class YourClass{
/** @var string $m_SampleProperty define here what this variable is for, do this for every instance variable */
private $m_SampleProperty = '';
/**
* Sample method
*
* Always create a corresponding docblock for each method, describing what it is for,
* this helps the phpdocumentator to properly generator the documentation
*
* @param string $param1 A string containing the parameter, do this for each parameter to the function, make sure to make it descriptive
*
* @return string
*/
public function method1($param1){
return "Hello World";
}
}