Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function findPublishedOneByName($name) |
||
33 | { |
||
34 | /** @var StaticContent|null $staticContent */ |
||
35 | $staticContent = $this->find($this->staticContentPath . '/' . $name); |
||
36 | |||
37 | if (null === $staticContent || !$staticContent->isPublishable()) { |
||
38 | return null; |
||
39 | } |
||
40 | |||
41 | return $staticContent; |
||
42 | } |
||
43 | } |
||
44 |