Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
29 | public function __construct( WP_Post $post ) |
||
30 | { |
||
31 | $this->content = $post->post_content; |
||
32 | $this->date = $post->post_date; |
||
33 | $this->ID = $post->ID; |
||
34 | $this->status = $post->post_status; |
||
35 | $this->title = $post->post_title; |
||
36 | $this->user_id = $post->post_author; |
||
37 | $this->setProperties( $post ); |
||
38 | } |
||
73 |