| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | 7 | public function __construct( $action, array $params = [], array $headers = [] ) { |
|
| 39 | 7 | if ( !is_string( $action ) ) { |
|
| 40 | 1 | throw new InvalidArgumentException( '$action must be string' ); |
|
| 41 | } |
||
| 42 | 6 | $this->action = $action; |
|
| 43 | 6 | $this->params = $params; |
|
| 44 | 6 | $this->headers = $headers; |
|
| 45 | 6 | } |
|
| 46 | |||
| 62 |