@@ -10,20 +10,20 @@ |
||
10 | 10 | */ |
11 | 11 | class YourClass{ |
12 | 12 | |
13 | - /** @var string $m_SampleProperty define here what this variable is for, do this for every instance variable */ |
|
14 | - private $m_SampleProperty = ''; |
|
13 | + /** @var string $m_SampleProperty define here what this variable is for, do this for every instance variable */ |
|
14 | + private $m_SampleProperty = ''; |
|
15 | 15 | |
16 | - /** |
|
17 | - * Sample method |
|
18 | - * |
|
19 | - * Always create a corresponding docblock for each method, describing what it is for, |
|
20 | - * this helps the phpdocumentator to properly generator the documentation |
|
21 | - * |
|
22 | - * @param string $param1 A string containing the parameter, do this for each parameter to the function, make sure to make it descriptive |
|
23 | - * |
|
24 | - * @return string |
|
25 | - */ |
|
26 | - public function method1($param1){ |
|
27 | - return "Hello World"; |
|
28 | - } |
|
16 | + /** |
|
17 | + * Sample method |
|
18 | + * |
|
19 | + * Always create a corresponding docblock for each method, describing what it is for, |
|
20 | + * this helps the phpdocumentator to properly generator the documentation |
|
21 | + * |
|
22 | + * @param string $param1 A string containing the parameter, do this for each parameter to the function, make sure to make it descriptive |
|
23 | + * |
|
24 | + * @return string |
|
25 | + */ |
|
26 | + public function method1($param1){ |
|
27 | + return "Hello World"; |
|
28 | + } |
|
29 | 29 | } |
30 | 30 | \ No newline at end of file |