| 1 | <?php |
||
| 13 | abstract class AbstractPlugin implements PluginInterface |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var AdapterInterface |
||
| 18 | */ |
||
| 19 | protected $adapter; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param \Gbowo\Contract\Adapter\AdapterInterface $adapter |
||
| 23 | * @return $this |
||
| 24 | */ |
||
| 25 | 31 | public function setAdapter(AdapterInterface $adapter) |
|
| 31 | } |
||
| 32 |