| Total Complexity | 7 |
| Total Lines | 56 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | final class XslFoOutput extends AbstractMarkupOutput |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | function getPaymentPartTemplate(): string |
||
|
|
|||
| 19 | { |
||
| 20 | return PaymentPartTemplate::TEMPLATE; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | function getPlaceholderElementTemplate(): string |
||
| 27 | { |
||
| 28 | return PlaceholderElementTemplate::TEMPLATE; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | function getPrintableStylesTemplate(): string |
||
| 35 | { |
||
| 36 | return PrintableStylesTemplate::TEMPLATE; |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | function getTextElementTemplate(): string |
||
| 43 | { |
||
| 44 | return TextElementTemplate::TEMPLATE; |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return string |
||
| 49 | */ |
||
| 50 | function getTitleElementTemplate(): string |
||
| 51 | { |
||
| 52 | return TitleElementTemplate::TEMPLATE; |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @return string |
||
| 57 | */ |
||
| 58 | function getTitleElementReceiptTemplate(): string |
||
| 61 | } |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return string |
||
| 65 | */ |
||
| 66 | function getNewlineElementTemplate(): string |
||
| 69 | } |
||
| 70 | } |
||
| 71 |
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.