| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | */ |
||
| 18 | public function is_fulfilled( $environment ) { |
||
| 19 | $post_id = $environment['post_id']; |
||
| 20 | $post_level = count( get_post_ancestors( $post_id ) ) + 1; |
||
| 21 | $value = max( 1, intval( $this->get_value() ) ); |
||
| 22 | |||
| 23 | return $this->first_supported_comparer_is_correct( |
||
| 24 | $post_level, |
||
| 25 | $this->get_comparison_operator(), |
||
| 26 | $value |
||
| 29 | } |