1 | <?php |
||
22 | class MaterialDesignIconicFontIconRenderer extends IconRenderer { |
||
23 | |||
24 | /** |
||
25 | * Render a border. |
||
26 | * |
||
27 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
28 | * @return string|null Returns the rendered border in case of success, null otherwise. |
||
29 | */ |
||
30 | public static function renderBorder(MaterialDesignIconicFontIconInterface $icon) { |
||
33 | |||
34 | /** |
||
35 | * Render a fixed width. |
||
36 | * |
||
37 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
38 | * @return string Returns the rendered fixed width in case of success, null otherwise. |
||
39 | */ |
||
40 | public static function renderFixedWidth(MaterialDesignIconicFontIconInterface $icon) { |
||
43 | |||
44 | /** |
||
45 | * Render a flip. |
||
46 | * |
||
47 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
48 | * @return string|null Returns the rendered flip. |
||
49 | */ |
||
50 | public static function renderFlip(MaterialDesignIconicFontIconInterface $icon) { |
||
53 | |||
54 | /** |
||
55 | * Render a name. |
||
56 | * |
||
57 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
58 | * @return string|null Returns the rendered name in case of success, false otherwise. |
||
59 | */ |
||
60 | public static function renderName(MaterialDesignIconicFontIconInterface $icon) { |
||
63 | |||
64 | /** |
||
65 | * Render a pull. |
||
66 | * |
||
67 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
68 | * @return string|null Returns the rendered pull in case of success, null otherwise. |
||
69 | */ |
||
70 | public static function renderPull(MaterialDesignIconicFontIconInterface $icon) { |
||
73 | |||
74 | /** |
||
75 | * Render a rotate. |
||
76 | * |
||
77 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
78 | * @return string|null Returns the rendered rotate in case of success, null otherwise. |
||
79 | */ |
||
80 | public static function renderRotate(MaterialDesignIconicFontIconInterface $icon) { |
||
83 | |||
84 | /** |
||
85 | * Render a size. |
||
86 | * |
||
87 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
88 | * @return string|null Returns the rendered size in case of success, null otherwise. |
||
89 | */ |
||
90 | public static function renderSize(MaterialDesignIconicFontIconInterface $icon) { |
||
93 | |||
94 | /** |
||
95 | * Render a spin. |
||
96 | * |
||
97 | * @param MaterialDesignIconicFontIconInterface $icon The icon. |
||
98 | * @return string|null Returns the rendered spin in case of success, null otherwise. |
||
99 | */ |
||
100 | public static function renderSpin(MaterialDesignIconicFontIconInterface $icon) { |
||
103 | |||
104 | } |
||
105 |