| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 5 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 17 | public function register() |
||
| 18 | { |
||
| 19 | // Attempt to load default configuration |
||
| 20 | $this->mergeConfigFrom(__DIR__ . '/../config/cassandra.php', 'cassandra'); |
||
| 21 | |||
| 22 | // Configure cassandra options |
||
| 23 | $this->app->configure('cassandra'); |
||
| 24 | |||
| 25 | // Register cassandra |
||
| 26 | $this->app->singleton('Cassandra', function () { |
||
| 27 | return new Cassandra(); |
||
| 28 | }); |
||
| 29 | } |
||
| 30 | } |