Conditions | 4 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
25 | protected function checkMultipartParams( $params ) { |
||
26 | foreach ( $params as $key => $val ) { |
||
27 | if ( !is_array( $val ) ) { |
||
28 | throw new Exception( "Parameter '$key' must be an array." ); |
||
29 | } |
||
30 | if ( !in_array( $key, $this->getParams() ) ) { |
||
31 | throw new Exception( "Parameter '$key' is not already set on this request." ); |
||
32 | } |
||
33 | } |
||
34 | } |
||
35 | |||
70 |