| 1 | <?php |
||
| 5 | trait ConnectionAwareTrait |
||
| 6 | { |
||
| 7 | |||
| 8 | /** @var \Buttress\Concrete\Client\Connection\Connection */ |
||
| 9 | private $traitConnection; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Get the connection |
||
| 13 | * @return \Buttress\Concrete\Client\Connection\Connection |
||
| 14 | */ |
||
| 15 | public function connection() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Set the connection |
||
| 22 | * @param mixed $traitConnection |
||
| 23 | * @return static |
||
| 24 | */ |
||
| 25 | public function setConnection(Connection $traitConnection) |
||
| 30 | |||
| 31 | } |
||
| 32 |