Mark V
1: <?php
2: namespace MOC\V\Component\Documentation\Component\Parameter\Repository;
3:
4: /**
5: * Class ExcludeParameter
6: *
7: * @package MOC\V\Component\Documentation\Component\Parameter\Repository
8: */
9: class ExcludeParameter
10: {
11:
12: /** @var string $GlobList */
13: private $GlobList = null;
14:
15: /**
16: * @param array $GlobDirectory
17: */
18: public function __construct($GlobDirectory)
19: {
20:
21: $this->setGlobList($GlobDirectory);
22: }
23:
24: /**
25: * @return string
26: */
27: public function getGlobList()
28: {
29:
30: return implode(",", $this->GlobList);
31: }
32:
33: /**
34: * @param array $GlobList
35: */
36: public function setGlobList($GlobList)
37: {
38:
39: $this->GlobList = $GlobList;
40: }
41: }
42: