1 | <?php |
||
7 | abstract class AbstractRequest extends OmnipayAbstractRequest |
||
8 | { |
||
9 | /** |
||
10 | * Get the Project ID. |
||
11 | * |
||
12 | * @return string |
||
13 | */ |
||
14 | 5 | public function getProjectId() |
|
18 | |||
19 | /** |
||
20 | * Set the Project ID. |
||
21 | * |
||
22 | * @param string $value |
||
23 | * @return $this |
||
24 | */ |
||
25 | 16 | public function setProjectId($value) |
|
29 | |||
30 | /** |
||
31 | * Get the password. |
||
32 | * |
||
33 | * @return string |
||
34 | */ |
||
35 | 9 | public function getPassword() |
|
39 | |||
40 | /** |
||
41 | * Set the password. |
||
42 | * |
||
43 | * @param string $value |
||
44 | * @return $this |
||
45 | */ |
||
46 | 16 | public function setPassword($value) |
|
50 | } |
||
51 |