| Total Complexity | 6 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class Utility { |
||
| 7 | public static $REVISION_FILE = "./REVISION"; |
||
| 8 | |||
| 9 | public static function getGithubRevUrl($file = false) { |
||
| 10 | if($hash = self::getRevHash($file)) { |
||
| 11 | return "https://github.com/CorWatts/fasterscale/commit/$hash"; |
||
| 12 | } |
||
| 13 | return false; |
||
| 14 | } |
||
| 15 | |||
| 16 | public static function getRevHash($file = false) { |
||
| 22 | } |
||
| 23 | |||
| 26 |