1: <?php
2:
3: namespace webfilesframework\codegeneration\general;
4:
5: /**
6: * description
7: *
8: * @author Sebastian Monzel < mail@sebastianmonzel.de >
9: * @since 0.1.7
10: */
11: abstract class MAbstractClassAttribute extends MAbstractCodeItem
12: {
13:
14: protected $visibility = "public";
15: protected $name;
16: protected $type;
17:
18: public function getVisibility()
19: {
20: return $this->visibility;
21: }
22:
23: public function getName()
24: {
25: return $this->name;
26: }
27:
28: public function getType()
29: {
30: return $this->type;
31: }
32:
33: }