forked from cloudconvert/cloudconvert-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskCollection.php
More file actions
102 lines (83 loc) · 1.89 KB
/
TaskCollection.php
File metadata and controls
102 lines (83 loc) · 1.89 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
namespace CloudConvert\Models;
class TaskCollection extends Collection
{
/**
* Filter task collection by status
*
* @param $status
*
* @return TaskCollection
*/
public function whereStatus($status): TaskCollection
{
return $this->filter(function (Task $task) use ($status) {
return $task->getStatus() === $status;
});
}
/**
* Filter task collection by status
*
* @param $status
*
* @return TaskCollection
* @deprecated Use whereStatus() instead
*
*/
public function status($status): TaskCollection
{
return $this->whereStatus($status);
}
/**
* Filter task collection by task name
*
* @param $name
*
* @return TaskCollection
*/
public function whereName($name): TaskCollection
{
return $this->filter(function (Task $task) use ($name) {
return $task->getName() === $name;
});
}
/**
* Filter task collection by task name
*
* @param $name
*
* @return TaskCollection
* @deprecated Use whereName() instead
*
*/
public function name($name): TaskCollection
{
return $this->whereName($name);
}
/**
* Filter task collection by operation
*
* @param $operation
*
* @return TaskCollection
*/
public function whereOperation($operation): TaskCollection
{
return $this->filter(function (Task $task) use ($operation) {
return $task->getOperation() === $operation;
});
}
/**
* Filter task collection by operation
*
* @param $operation
*
* @return TaskCollection
* @deprecated Use whereOperation() instead
*
*/
public function operation($operation): TaskCollection
{
return $this->whereOperation($operation);
}
}