1 | <?php |
||
5 | abstract class Connection implements ConnectionInterface |
||
6 | { |
||
7 | /** |
||
8 | * The application instance. |
||
9 | * |
||
10 | * @var \Illuminate\Foundation\Application |
||
11 | */ |
||
12 | protected $app; |
||
13 | |||
14 | /** |
||
15 | * The hashid connection configuration options. |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $config = []; |
||
20 | |||
21 | /** |
||
22 | * Create a new hashid connection instance. |
||
23 | * |
||
24 | * @param \Illuminate\Foundation\Application $app |
||
25 | * @param array $config |
||
26 | */ |
||
27 | public function __construct($app, $config) |
||
32 | } |
||
33 |