-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTask.php
More file actions
88 lines (75 loc) · 1.54 KB
/
Copy pathTask.php
File metadata and controls
88 lines (75 loc) · 1.54 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
namespace Coolie;
/**
* @package Coolie
*/
class Task
{
/**
* @var int
*/
private $_id;
/**
* @var string
*/
private $_worker;
/**
* @var string
*/
private $_action;
/**
* @var string
*/
private $_production;
private function __construct()
{
}
/**
* @param int $id
* @param string $worker
* @param string $action
* @param array $production
*/
public function set($id, $worker, $action, array $production)
{
$this->_id = $id;
$this->_worker = $worker;
$this->_action = $action;
$this->_production = $production;
}
/**
*
*
* @param int $id
* @param string $worker
* @param string $action
* @param array $production
* @return Task
*/
public static function create($id, $worker, $action, array $production = array())
{
$task = new self;
$task->set($id, $worker, $action, $production);
return $task;
}
/**
* get property
*
* @param string $name
* @return null|mixed
*/
public function __get($name)
{
$name = '_' . $name;
return property_exists($this, $name) ? $this->$name : null;
}
public function __toString()
{
return json_encode([
'id' => $this->_id,
'worker' => $this->_worker,
'action' => $this->_action,
'production' => $this->_production
]);
}
}