1 | <?php |
||
5 | class Account extends AbstractObject |
||
6 | { |
||
7 | /** |
||
8 | * Insert new account. |
||
9 | * |
||
10 | * @param $params |
||
11 | */ |
||
12 | public function create(array $params) |
||
18 | |||
19 | /** |
||
20 | * Check if account already exists on SF. |
||
21 | * |
||
22 | * @param string $email |
||
23 | * |
||
24 | * @return bool|array |
||
25 | */ |
||
26 | public function exists($phone = null, $email = null) |
||
38 | } |
||
39 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.