| 1 | <?php |
||
| 5 | class Utils |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Get Traits list. |
||
| 9 | * |
||
| 10 | * @param string $globPattern |
||
| 11 | * |
||
| 12 | * @return array |
||
| 13 | */ |
||
| 14 | 15 | public static function getTraitsList($globPattern = '{Document,Entity}') |
|
| 25 | |||
| 26 | /** |
||
| 27 | * Get Providers List. |
||
| 28 | * |
||
| 29 | * @param string $type Document or Entity. |
||
| 30 | * |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | 6 | public static function getProvidersList($type = 'Document') |
|
| 54 | } |
||
| 55 |