| 1 | <?php |
||
| 10 | abstract class AdapterAbstract |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ProfilerInterface |
||
| 14 | */ |
||
| 15 | protected $profiler; |
||
| 16 | |||
| 17 | 5 | public function __construct(ProfilerInterface $profiler) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return ProfilerInterface |
||
| 24 | */ |
||
| 25 | 1 | public function getProfiler() |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param ProfilerInterface $profiler |
||
| 32 | */ |
||
| 33 | 4 | public function setProfiler(ProfilerInterface $profiler) |
|
| 37 | } |
||
| 38 |