| Conditions | 2 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function get( $post_id, $meta_key ) { |
||
| 13 | |||
| 14 | return array_map( function ( $item ) { |
||
| 15 | |||
| 16 | // If this is an entity reference, set that this entity is always required in SD output. |
||
| 17 | if ( $item instanceof Wordlift_Property_Entity_Reference ) { |
||
| 18 | $item->set_required( true ); |
||
| 19 | } |
||
| 20 | |||
| 21 | return $item; |
||
| 22 | }, parent::get( $post_id, $meta_key ) ); |
||
| 23 | } |
||
| 24 | |||
| 26 |