| Total Complexity | 3 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | trait HasPackageManifest |
||
| 9 | { |
||
| 10 | protected static $packageManifest; |
||
| 11 | |||
| 12 | final public static function packageManifest() |
||
| 13 | { |
||
| 14 | return self::$packageManifest = self::$packageManifest?: new PackageManifest(new Filesystem(), app()->basePath(), self::getCachedManifestPath()); |
||
| 15 | } |
||
| 16 | |||
| 17 | final public static function getCachedManifestPath() |
||
| 20 | } |
||
| 21 | } |