Total Complexity | 8 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ConfiguresFeaturedImageForPost |
||
14 | { |
||
15 | public static function run(MarkdownPost $page): Image|null |
||
16 | { |
||
17 | return (new static($page))->constructImage(); |
||
18 | } |
||
19 | |||
20 | protected function __construct(protected MarkdownPost $page) |
||
21 | { |
||
22 | } |
||
23 | |||
24 | private function constructImage(): Image|null |
||
36 | } |
||
37 | |||
38 | private function constructBaseImage(string $image): Image |
||
45 |