blob: d966727d7e7b1b5d02504b96b1519569af3cec25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<?php
namespace Pheanstalk\Command;
use Pheanstalk\Command;
use Pheanstalk\Response;
/**
* Common functionality for Command implementations.
*
* @author Paul Annesley
* @package Pheanstalk
* @license http://www.opensource.org/licenses/mit-license.php
*/
abstract class AbstractCommand
implements Command
{
/* (non-phpdoc)
* @see Command::hasData()
*/
public function hasData()
{
return false;
}
/* (non-phpdoc)
* @see Command::getData()
*/
public function getData()
{
throw new Exception\CommandException('Command has no data');
}
/* (non-phpdoc)
* @see Command::getDataLength()
*/
public function getDataLength()
{
throw new Exception\CommandException('Command has no data');
}
/* (non-phpdoc)
* @see Command::getResponseParser()
*/
public function getResponseParser()
{
// concrete implementation must either:
// a) implement ResponseParser
// b) override this getResponseParser method
return $this;
}
/**
* The string representation of the object.
* @return string
*/
public function __toString()
{
return $this->getCommandLine();
}
// ----------------------------------------
// protected
/**
* Creates a Response for the given data
* @param array
* @return object Response
*/
protected function _createResponse($name, $data = array())
{
return new Response\ArrayResponse($name, $data);
}
}
|