1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Pheanstalk\Command; |
4
|
|
|
|
5
|
|
|
use Pheanstalk\ResponseParser; |
6
|
|
|
use Pheanstalk\Structure\Schedule; |
7
|
|
|
use Pheanstalk\Structure\Workflow; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* The 'update' command. |
11
|
|
|
* |
12
|
|
|
* Update an existing Schedule. |
13
|
|
|
* |
14
|
|
|
* @author Valentin Corre |
15
|
|
|
* @package Pheanstalk |
16
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php |
17
|
|
|
*/ |
18
|
|
|
class UpdateScheduleCommand extends AbstractCommand implements ResponseParser |
19
|
|
|
{ |
20
|
|
|
/** @var Workflow $workflow */ |
21
|
|
|
private $schedule; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @param Schedule $schedule |
25
|
|
|
*/ |
26
|
|
|
public function __construct(Schedule $schedule) |
27
|
|
|
{ |
28
|
|
|
$this->schedule = $schedule; |
|
|
|
|
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* @inheritDoc |
33
|
|
|
*/ |
34
|
|
|
public function getGroup(): string |
35
|
|
|
{ |
36
|
|
|
return 'workflow_schedule'; |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @inheritDoc |
41
|
|
|
*/ |
42
|
|
|
public function getAction(): string |
43
|
|
|
{ |
44
|
|
|
return 'edit'; |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* @inheritDoc |
49
|
|
|
*/ |
50
|
|
|
public function getFilters(): array |
51
|
|
|
{ |
52
|
|
|
return [ |
53
|
|
|
'id' => $this->schedule->getId(), |
54
|
|
|
'workflow_id' => $this->schedule->getWorkflow(), |
|
|
|
|
55
|
|
|
'schedule' => $this->schedule->getSchedule()->__toString(), |
|
|
|
|
56
|
|
|
'onfailure' => $this->schedule->getOnFailure(), |
|
|
|
|
57
|
|
|
'user' => $this->schedule->getUser(), |
|
|
|
|
58
|
|
|
'host' => $this->schedule->getHost(), |
|
|
|
|
59
|
|
|
'active' => $this->schedule->isActive(), |
|
|
|
|
60
|
|
|
"comment" => $this->schedule->getComment() |
61
|
|
|
]; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* @inheritDoc |
66
|
|
|
*/ |
67
|
|
|
public function getResponseParser() |
68
|
|
|
{ |
69
|
|
|
return $this; |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* @inheritDoc |
74
|
|
|
*/ |
75
|
|
|
public function parseResponse($responseLine, $responseData) |
76
|
|
|
{ |
77
|
|
|
var_dump($responseData); |
|
|
|
|
78
|
|
|
return $this->schedule; |
79
|
|
|
} |
80
|
|
|
} |
81
|
|
|
|
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..