3 namespace BookStack\App;
7 protected static string $version = '';
10 * Get the application's version number from its top-level `version` text file.
12 public static function get(): string
14 if (!empty(static::$version)) {
15 return static::$version;
18 $versionFile = base_path('version');
19 $version = trim(file_get_contents($versionFile));
20 static::$version = $version;