| 1 | <?php |
||
| 31 | class BaseWsMessage |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * Check if any parameter to the current function is not empty |
||
| 35 | * |
||
| 36 | * @param mixed |
||
| 37 | * @return boolean true if at least 1 parameter is not empty |
||
| 38 | */ |
||
| 39 | protected function checkAnyNotEmpty() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Check if any parameter to the current function is true |
||
| 57 | * |
||
| 58 | * @param mixed |
||
| 59 | * @return boolean true if at least 1 parameter is true |
||
| 60 | */ |
||
| 61 | protected function checkAnyTrue() |
||
| 76 | } |
||
| 77 |