Conditions | 3 |
Paths | 3 |
Total Lines | 17 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
22 | 168 | public static function name($name) |
|
23 | { |
||
24 | 168 | if (!is_string($name)) { |
|
25 | 5 | throw new ClientException( |
|
26 | 5 | 'Name must be a string', |
|
27 | \ALIBABA_CLOUD_INVALID_ARGUMENT |
||
28 | 5 | ); |
|
29 | } |
||
30 | |||
31 | 163 | if ($name === '') { |
|
32 | 5 | throw new ClientException( |
|
33 | 5 | 'Name cannot be empty', |
|
34 | \ALIBABA_CLOUD_INVALID_ARGUMENT |
||
35 | 5 | ); |
|
36 | } |
||
37 | |||
38 | 158 | return $name; |
|
39 | } |
||
67 |