Mark V
1: <?php
2: namespace MOC\V\Core\FileSystem\Vendor\Universal;
3:
4: /**
5: * Class FileLoader
6: *
7: * @package MOC\V\Core\FileSystem\Vendor\Universal
8: */
9: class FileLoader
10: {
11:
12: /** @var string $Location */
13: private $Location = null;
14:
15: /**
16: * @param string $Location
17: */
18: public function __construct($Location)
19: {
20:
21: $this->setLocation($Location);
22: }
23:
24: /**
25: * @return string
26: */
27: public function getLocation()
28: {
29:
30: return $this->Location;
31: }
32:
33: /**
34: * @param string $Location
35: */
36: public function setLocation($Location)
37: {
38:
39: $this->Location = $Location;
40: }
41:
42: }
43:
44: