1 | <?php |
||
8 | class Concrete5 implements Client |
||
9 | { |
||
10 | |||
11 | protected $adapter; |
||
12 | |||
13 | public function __construct(Adapter $adapter) |
||
17 | |||
18 | /** |
||
19 | * Attempt to disconnect |
||
20 | * (This isn't going to be fully supported for awhile) |
||
21 | * |
||
22 | * @param \Buttress\Concrete\Client\Connection\Connection $connection |
||
23 | * @return bool |
||
24 | */ |
||
25 | public function disconnect(Connection $connection) |
||
29 | |||
30 | /** |
||
31 | * Get a connection to a concrete5 site |
||
32 | * @return Connection |
||
33 | */ |
||
34 | public function connect() |
||
38 | } |
||
39 |