AbstractAdapter::getClient()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 1
nc 1
1
<?php namespace AdammBalogh\KeyValueStore\Adapter;
2
3
use AdammBalogh\KeyValueStore\Contract\AdapterInterface;
4
5
abstract class AbstractAdapter implements AdapterInterface
6
{
7
    /**
8
     * @return $this
9
     */
10
    public function getAdapter()
11
    {
12
        return $this;
13
    }
14
15
    /**
16
     * @return mixed
17
     */
18
    abstract public function getClient();
19
}
20