partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

PartKeeprVersion.php (453B)


      1 <?php
      2 
      3 namespace PartKeepr\CoreBundle;
      4 
      5 class PartKeeprVersion
      6 {
      7     /**
      8      * Holds the PartKeepr Version.
      9      *
     10      * If {V_GIT}, then the function will return 'GIT Development Version'.
     11      * {V_GIT} will be replaced by the build script with the actual version.
     12      *
     13      * The reason why we have a separate class for the version constant is that
     14      * we can easily replace it from scripts.
     15      */
     16     const PARTKEEPR_VERSION = '{V_GIT}';
     17 }