1: <?php
2: /**
3: * Created by PhpStorm.
4: * User: manus
5: * Date: 13/1/16
6: * Time: 19:38
7: */
8:
9: namespace GLFramework;
10:
11:
12: class Versions
13: {
14: private $filename = "versions.json";
15: public function getVersions()
16: {
17: return json_decode(file_get_contents($this->filename));
18: }
19:
20: public function getLastVersion()
21: {
22: $versions = $this->getVersions();
23: return $versions[0];
24: }
25: }