summaryrefslogblamecommitdiffstats
path: root/management-interface/api/models/Util.php
blob: d97cfe215f038210abe388b25a05a6eae680db0b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                               
<?php

class Util {

	public static function firstCap($string) {
		return strtoupper(substr($string, 0, 1)) . substr($string, 1, strlen($string));
	}

}

?>