1: <?php
2:
3: namespace Guzzle\Log;
4:
5: /**
6: * Adapter class that allows Guzzle to log data using various logging implementations
7: */
8: abstract class AbstractLogAdapter implements LogAdapterInterface
9: {
10: protected $log;
11:
12: /**
13: * {@inheritdoc}
14: */
15: public function getLogObject()
16: {
17: return $this->log;
18: }
19: }
20: