1 | <?php |
||
22 | class MaterialDesignIconicFontIcon extends AbstractIcon implements MaterialDesignIconicFontIconInterface { |
||
23 | |||
24 | /** |
||
25 | * Border. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | private $border; |
||
30 | |||
31 | /** |
||
32 | * Fixed width. |
||
33 | * |
||
34 | * @var bool |
||
35 | */ |
||
36 | private $fixedWidth; |
||
37 | |||
38 | /** |
||
39 | * Flip. |
||
40 | * |
||
41 | * @var string |
||
42 | */ |
||
43 | private $flip; |
||
44 | |||
45 | /** |
||
46 | * Pull. |
||
47 | * |
||
48 | * @var string |
||
49 | */ |
||
50 | private $pull; |
||
51 | |||
52 | /** |
||
53 | * Rotate. |
||
54 | * |
||
55 | * @var string |
||
56 | */ |
||
57 | private $rotate; |
||
58 | |||
59 | /** |
||
60 | * Size. |
||
61 | * |
||
62 | * @var string |
||
63 | */ |
||
64 | private $size; |
||
65 | |||
66 | /** |
||
67 | * Spin. |
||
68 | * |
||
69 | * @var string |
||
70 | */ |
||
71 | private $spin; |
||
72 | |||
73 | /** |
||
74 | * Constructor. |
||
75 | */ |
||
76 | public function __construct() { |
||
80 | |||
81 | /** |
||
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | public function getBorder() { |
||
87 | |||
88 | /** |
||
89 | * {@inheritdoc} |
||
90 | */ |
||
91 | public function getFixedWidth() { |
||
94 | |||
95 | /** |
||
96 | * {@inheritdoc} |
||
97 | */ |
||
98 | public function getFlip() { |
||
101 | |||
102 | /** |
||
103 | * {@inheritdoc} |
||
104 | */ |
||
105 | public function getPull() { |
||
108 | |||
109 | /** |
||
110 | * {@inheritdoc} |
||
111 | */ |
||
112 | public function getRotate() { |
||
115 | |||
116 | /** |
||
117 | * {@inheritdoc} |
||
118 | */ |
||
119 | public function getSize() { |
||
122 | |||
123 | /** |
||
124 | * {@inheritdoc} |
||
125 | */ |
||
126 | public function getSpin() { |
||
129 | |||
130 | /** |
||
131 | * {@inheritdoc} |
||
132 | */ |
||
133 | public function setBorder($border) { |
||
140 | |||
141 | /** |
||
142 | * {@inheritdoc} |
||
143 | */ |
||
144 | public function setFixedWidth($fixedWidth) { |
||
148 | |||
149 | /** |
||
150 | *{@inheritdoc} |
||
151 | */ |
||
152 | public function setFlip($flip) { |
||
159 | |||
160 | /** |
||
161 | * {@inheritdoc} |
||
162 | */ |
||
163 | public function setPull($pull) { |
||
170 | |||
171 | /** |
||
172 | * {@inheritdoc} |
||
173 | */ |
||
174 | public function setRotate($rotate) { |
||
181 | |||
182 | /** |
||
183 | * {@inheritdoc} |
||
184 | */ |
||
185 | public function setSize($size) { |
||
192 | |||
193 | /** |
||
194 | * {@inheritdoc} |
||
195 | */ |
||
196 | public function setSpin($spin) { |
||
203 | } |
||
204 |