1 | <?php |
||
30 | trait DriverAwareTrait |
||
31 | { |
||
32 | /** |
||
33 | * @var DriverInterface |
||
34 | * @access protected |
||
35 | */ |
||
36 | protected $driver; |
||
37 | |||
38 | /** |
||
39 | * {@inheritDoc} |
||
40 | */ |
||
41 | public function setDriver(DriverInterface $driver = null) |
||
49 | |||
50 | /** |
||
51 | * {@inheritDoc} |
||
52 | */ |
||
53 | public function getDriver()/*# : DriverInterface */ |
||
57 | } |
||
58 |