Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| TemplateFinder | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| getTemplatePath | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace BO\Zmsentities\Helper; |
| 4 | |
| 5 | /** |
| 6 | * Special sort algorithm for DLDB |
| 7 | */ |
| 8 | class TemplateFinder |
| 9 | { |
| 10 | /** |
| 11 | * @todo check against ISO definition |
| 12 | */ |
| 13 | public static function getTemplatePath() |
| 14 | { |
| 15 | return realpath(__DIR__) . '/../../../templates'; |
| 16 | } |
| 17 | } |