remove template class
This commit is contained in:
parent
818ad5b349
commit
e70ca74d73
|
@ -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";
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue