1 | <?php |
||
21 | abstract class SentryClientAdaptor |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | * @param mixed $opt |
||
26 | * @return mixed |
||
27 | */ |
||
28 | protected function getOpts($opt) |
||
38 | |||
39 | /** |
||
40 | * Set the data we need from the writer. |
||
41 | * |
||
42 | * @param string $field |
||
43 | * @param mixed (string | array) $data |
||
44 | */ |
||
45 | abstract public function setData($field, $data); |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | abstract public function getLevel($level); |
||
51 | |||
52 | } |
||
53 |