| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function register() |
||
| 24 | { |
||
| 25 | $this->app->singleton( |
||
| 26 | 'command.schema.export', |
||
| 27 | function() { |
||
| 28 | return new SchemaExport(); |
||
| 29 | } |
||
| 30 | ); |
||
| 31 | |||
| 32 | $this->app->singleton( |
||
| 33 | 'command.schema.import', |
||
| 34 | function() { |
||
| 35 | return new SchemaImport(); |
||
| 36 | } |
||
| 37 | ); |
||
| 38 | |||
| 39 | $this->commands('command.schema.export', 'command.schema.import'); |
||
| 40 | } |
||
| 41 | |||
| 52 |