| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function register(Container $app) |
||
| 28 | { |
||
| 29 | $app['external_contact'] = function ($app) { |
||
| 30 | return new Client($app); |
||
| 31 | }; |
||
| 32 | |||
| 33 | $app['contact_way'] = function ($app) { |
||
| 34 | return new ContactWayClient($app); |
||
| 35 | }; |
||
| 36 | |||
| 37 | $app['external_contact_statistics'] = function ($app) { |
||
| 38 | return new StatisticsClient($app); |
||
| 39 | }; |
||
| 40 | |||
| 41 | $app['external_contact_message'] = function ($app) { |
||
| 42 | return new MessageClient($app); |
||
| 43 | }; |
||
| 46 |