| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function __construct( $response ) { |
||
| 25 | |||
| 26 | $this->response = $response; |
||
| 27 | $this->code = wp_remote_retrieve_response_code( $this->response ); |
||
| 28 | $this->is_success = ! empty( $this->code ) && 2 === (int) $this->code / 100; |
||
| 29 | $this->body = wp_remote_retrieve_body( $this->response ); |
||
| 30 | |||
| 31 | } |
||
| 32 | |||
| 45 |