| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | */ |
||
| 16 | public function is_fulfilled( $environment ) { |
||
| 17 | $post = $environment['post']; |
||
| 18 | $post_parent_id = is_object( $post ) ? intval( $post->post_parent ) : 0; |
||
| 19 | |||
| 20 | return $this->first_supported_comparer_is_correct( |
||
| 21 | $post_parent_id, |
||
| 22 | $this->get_comparison_operator(), |
||
| 23 | $this->get_value() |
||
| 24 | ); |
||
| 26 | } |