| Total Complexity | 3 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 11 | class TemplateSkeletons |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Gets the template Skeletons from the configuration file. |
||
| 15 | * |
||
| 16 | * @return \Illuminate\Support\Collection |
||
| 17 | */ |
||
| 18 | public static function skeletons() |
||
| 19 | { |
||
| 20 | return new Collection(config('maileclipse.skeletons')); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param mixed $type |
||
| 25 | * @param mixed $name |
||
| 26 | * @param mixed $skeleton |
||
| 27 | * @return array|void |
||
| 28 | */ |
||
| 29 | public static function get($type, $name, $skeleton) |
||
| 44 | ]; |
||
| 45 | } |
||
| 48 |