1: <?php
2:
3: namespace webfilesframework\codegeneration\general;
4:
5: 6: 7: 8: 9: 10:
11: abstract class MAbstractClassMethod extends MAbstractCodeItem
12: {
13:
14: protected $visibility = "public";
15: protected $name;
16: protected $content;
17:
18: protected $parameters = array();
19:
20:
21: public function getVisibility()
22: {
23: return $this->visibility;
24: }
25:
26: public function getName()
27: {
28: return $this->name;
29: }
30:
31: public function getContent()
32: {
33: return $this->content;
34: }
35:
36:
37: }