1 | <?php |
||
31 | trait DriverAwareTrait |
||
32 | { |
||
33 | /** |
||
34 | * @var DriverInterface |
||
35 | * @access protected |
||
36 | */ |
||
37 | protected $driver; |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | public function setDriver(DriverInterface $driver) |
||
47 | |||
48 | /** |
||
49 | * {@inheritDoc} |
||
50 | */ |
||
51 | public function getDriver()/*# : DriverInterface */ |
||
55 | } |
||
56 |