aboutsummaryrefslogtreecommitdiffhomepage
path: root/infrastructure/Version.php
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure/Version.php')
-rw-r--r--infrastructure/Version.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/infrastructure/Version.php b/infrastructure/Version.php
deleted file mode 100644
index 9ca7941..0000000
--- a/infrastructure/Version.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-
-namespace Infrastructure;
-
-class Version
-{
- public static function getGitTag()
- {
- $versionFile = base_path('version.txt');
- return file_exists($versionFile) ? file_get_contents($versionFile) : exec('git describe --tags');
- }
-}