| 1 | <?php |
||
| 17 | class DatabaseStorageService implements Provider |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Register a database storage implementation with the service container. |
||
| 21 | * |
||
| 22 | * @param Container $container |
||
| 23 | */ |
||
| 24 | public function register(Container $container) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Attach the registered storage to the ORM's active record class. |
||
| 40 | * |
||
| 41 | * @param Storage $storage |
||
| 42 | */ |
||
| 43 | public function boot(Storage $storage) |
||
| 47 | } |
||
| 48 |