1 | <?php |
||
20 | class MaterialDesignIconicFontIcon extends AbstractIcon implements MaterialDesignIconicFontIconInterface { |
||
21 | |||
22 | /** |
||
23 | * Border. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | private $border; |
||
28 | |||
29 | /** |
||
30 | * Fixed width. |
||
31 | * |
||
32 | * @var bool |
||
33 | */ |
||
34 | private $fixedWidth; |
||
35 | |||
36 | /** |
||
37 | * Flip. |
||
38 | * |
||
39 | * @var string |
||
40 | */ |
||
41 | private $flip; |
||
42 | |||
43 | /** |
||
44 | * Pull. |
||
45 | * |
||
46 | * @var string |
||
47 | */ |
||
48 | private $pull; |
||
49 | |||
50 | /** |
||
51 | * Rotate. |
||
52 | * |
||
53 | * @var string |
||
54 | */ |
||
55 | private $rotate; |
||
56 | |||
57 | /** |
||
58 | * Size. |
||
59 | * |
||
60 | * @var string |
||
61 | */ |
||
62 | private $size; |
||
63 | |||
64 | /** |
||
65 | * Spin. |
||
66 | * |
||
67 | * @var string |
||
68 | */ |
||
69 | private $spin; |
||
70 | |||
71 | /** |
||
72 | * Constructor. |
||
73 | */ |
||
74 | public function __construct() { |
||
78 | |||
79 | /** |
||
80 | * {@inheritdoc} |
||
81 | */ |
||
82 | public function getBorder() { |
||
85 | |||
86 | /** |
||
87 | * {@inheritdoc} |
||
88 | */ |
||
89 | public function getFixedWidth() { |
||
92 | |||
93 | /** |
||
94 | * {@inheritdoc} |
||
95 | */ |
||
96 | public function getFlip() { |
||
99 | |||
100 | /** |
||
101 | * {@inheritdoc} |
||
102 | */ |
||
103 | public function getPull() { |
||
106 | |||
107 | /** |
||
108 | * {@inheritdoc} |
||
109 | */ |
||
110 | public function getRotate() { |
||
113 | |||
114 | /** |
||
115 | * {@inheritdoc} |
||
116 | */ |
||
117 | public function getSize() { |
||
120 | |||
121 | /** |
||
122 | * {@inheritdoc} |
||
123 | */ |
||
124 | public function getSpin() { |
||
127 | |||
128 | /** |
||
129 | * {@inheritdoc} |
||
130 | */ |
||
131 | public function setBorder($border) { |
||
135 | |||
136 | /** |
||
137 | * {@inheritdoc} |
||
138 | */ |
||
139 | public function setFixedWidth($fixedWidth) { |
||
143 | |||
144 | /** |
||
145 | *{@inheritdoc} |
||
146 | */ |
||
147 | public function setFlip($flip) { |
||
151 | |||
152 | /** |
||
153 | * {@inheritdoc} |
||
154 | */ |
||
155 | public function setPull($pull) { |
||
159 | |||
160 | /** |
||
161 | * {@inheritdoc} |
||
162 | */ |
||
163 | public function setRotate($rotate) { |
||
167 | |||
168 | /** |
||
169 | * {@inheritdoc} |
||
170 | */ |
||
171 | public function setSize($size) { |
||
175 | |||
176 | /** |
||
177 | * {@inheritdoc} |
||
178 | */ |
||
179 | public function setSpin($spin) { |
||
183 | |||
184 | } |
||
185 |