Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| Connection | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| getSchemaBuilder | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace Qmp\Laravel\MongoLow; |
| 4 | |
| 5 | use Jenssegers\Mongodb\Connection as JessengersConnection; |
| 6 | |
| 7 | class Connection extends JessengersConnection |
| 8 | { |
| 9 | /** |
| 10 | * @inheritdoc |
| 11 | */ |
| 12 | public function getSchemaBuilder() |
| 13 | { |
| 14 | return new Schema\Builder($this); |
| 15 | } |
| 16 | } |