| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public static function getRouteGroupBindings($bindings = [], $groupKey = 'public') |
||
| 33 | { |
||
| 34 | $defaults = ($groupKey == 'public') ? ['prefix' => self::getRoutePrefix()] : []; |
||
| 35 | $bindings = array_merge(Config::get("mardin.routes.bindings.{$groupKey}", []), $bindings); |
||
| 36 | |||
| 37 | return array_merge($defaults, $bindings); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |