| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Usman\Guardian\Repositories\Providers; |
||
| 13 | public function register() |
||
| 14 | { |
||
| 15 | $this->app->bind('Usman\Guardian\Repositories\Interfaces\CapabilityRepositoryInterface',function() |
||
| 16 | { |
||
| 17 | $capability = config('guardian.capabilityModel'); |
||
| 18 | return new CapabilityRepository(new $capability); |
||
| 19 | }); |
||
| 20 | } |
||
| 21 | } |