| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function getFunctions() |
||
| 23 | { |
||
| 24 | return [ |
||
| 25 | new TwigFunction('siteDefinition', [BrandingRuntime::class, 'getSiteDefinition']), |
||
| 26 | new TwigFunction('siteName', [BrandingRuntime::class, 'getSiteName']), |
||
| 27 | new TwigFunction('siteSlogan', [BrandingRuntime::class, 'getSiteSlogan']), |
||
| 28 | new TwigFunction('siteBranding', [BrandingRuntime::class, 'getSiteBrandingMarkup'], ['is_safe' => ['html']]), |
||
| 29 | new TwigFunction('siteImagePath', [BrandingRuntime::class, 'getSiteImagePath']) |
||
| 30 | ]; |
||
| 33 |