1 | <?php |
||
15 | class Input |
||
16 | { |
||
17 | /** |
||
18 | * The process input. |
||
19 | * |
||
20 | * @var mixed |
||
21 | */ |
||
22 | private $processInput; |
||
23 | |||
24 | /** |
||
25 | * The PostScript code. |
||
26 | * |
||
27 | * @var null|string |
||
28 | */ |
||
29 | private $postScriptCode; |
||
30 | |||
31 | /** |
||
32 | * The files. |
||
33 | * |
||
34 | * @var null|string[] |
||
35 | */ |
||
36 | private $files; |
||
37 | |||
38 | /** |
||
39 | * Get process input. |
||
40 | * |
||
41 | * @return mixed |
||
42 | */ |
||
43 | public function getProcessInput() |
||
47 | |||
48 | /** |
||
49 | * Set process input. |
||
50 | * |
||
51 | * @param mixed $processInput |
||
52 | * |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function setProcessInput($processInput) |
||
61 | |||
62 | /** |
||
63 | * Get PostScript code. |
||
64 | * |
||
65 | * @return null|string |
||
66 | */ |
||
67 | public function getPostScriptCode() |
||
71 | |||
72 | /** |
||
73 | * Set PostScript code. |
||
74 | * |
||
75 | * @param null|string $postScriptCode |
||
76 | * |
||
77 | * @return $this |
||
78 | */ |
||
79 | public function setPostScriptCode($postScriptCode) |
||
85 | |||
86 | /** |
||
87 | * Get files. |
||
88 | * |
||
89 | * @return string[] |
||
90 | */ |
||
91 | public function getFiles() |
||
99 | |||
100 | /** |
||
101 | * Set files. |
||
102 | * |
||
103 | * @param string[] $files |
||
104 | * |
||
105 | * @return $this |
||
106 | */ |
||
107 | public function setFiles(array $files) |
||
113 | |||
114 | /** |
||
115 | * Add file. |
||
116 | * |
||
117 | * @param string $file |
||
118 | * |
||
119 | * @return $this |
||
120 | */ |
||
121 | public function addFile($file) |
||
131 | } |
||
132 |