Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function setDetails(Post $post) |
||
35 | { |
||
36 | $this->media->instagram_id = $post->id; |
||
37 | $this->media->shortcode = $post->shortcode; |
||
38 | $this->media->is_video = $post->isVideo; |
||
39 | $this->media->caption = $post->caption; |
||
40 | $this->media->taken_at = $this->getNormalizedTakenAt($post); |
||
41 | $this->media->likes = $post->likes; |
||
42 | $this->media->comments = $post->comments; |
||
43 | |||
44 | return $this; |
||
45 | } |
||
56 | } |