1 | <?php |
||
25 | abstract class AbstractCardTwigExtension extends AbstractAdminBSBTwigExtension { |
||
26 | |||
27 | /** |
||
28 | * Typography. |
||
29 | * |
||
30 | * @var TypographyTwigExtension |
||
31 | */ |
||
32 | private $typography; |
||
33 | |||
34 | /** |
||
35 | * Constructor. |
||
36 | * |
||
37 | * @param TypographyTwigExtension $typography The typography. |
||
38 | */ |
||
39 | protected function __construct(TypographyTwigExtension $typography) { |
||
43 | |||
44 | /** |
||
45 | * Displays an AdminBSB card header. |
||
46 | * |
||
47 | * @param string $content The content. |
||
48 | * @param string $description The description. |
||
49 | * @param string $icon The icon. |
||
50 | * @return string Returns the AdminBSB card header. |
||
51 | */ |
||
52 | protected function adminBSBCardHeader($content, $description, $icon) { |
||
66 | |||
67 | /** |
||
68 | * Get the typography. |
||
69 | * |
||
70 | * @return TypographyTwigExtension Returns the typography. |
||
71 | */ |
||
72 | public function getTypography() { |
||
75 | |||
76 | /** |
||
77 | * Set the typography. |
||
78 | * |
||
79 | * @param TypographyTwigExtension $typography The typography. |
||
80 | * @return AbstractCardTwigExtension Returns this card Twig extension. |
||
81 | */ |
||
82 | protected function setTypography(TypographyTwigExtension $typography) { |
||
86 | |||
87 | } |
||
88 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.