| Total Complexity | 3 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 16 | class PostQuery extends Query  | 
            ||
| 17 | { | 
            ||
| 18 | protected $mediaDetailsMapper;  | 
            ||
| 19 | |||
| 20 | public function __construct($httpClient, MediaDetails $mediaDetailsMapper = null)  | 
            ||
| 21 |     { | 
            ||
| 22 | parent::__construct($httpClient);  | 
            ||
| 23 | $this->mediaDetailsMapper = $mediaDetailsMapper ?: new MediaDetails();  | 
            ||
| 24 | }  | 
            ||
| 25 | |||
| 26 | public function findOne(string $shortCode): Post  | 
            ||
| 34 | }  | 
            ||
| 35 | }  |