| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public function isSatisfied( RequestInterface $request ) { |
||
| 50 | $query_var_value = get_query_var( $this->query_var, null ); |
||
| 51 | |||
| 52 | if ( $query_var_value === null ) { |
||
| 53 | return false; |
||
| 54 | } |
||
| 55 | |||
| 56 | if ( $this->value === null ) { |
||
| 57 | return true; |
||
| 58 | } |
||
| 59 | |||
| 60 | return (string) $this->value === $query_var_value; |
||
| 61 | } |
||
| 70 |