1 | <?php |
||
20 | class FontAwesomeIcon extends AbstractIcon implements FontAwesomeIconInterface { |
||
21 | |||
22 | /** |
||
23 | * Animation. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | private $animation; |
||
28 | |||
29 | /** |
||
30 | * Bordered. |
||
31 | * |
||
32 | * @var bool |
||
33 | */ |
||
34 | private $bordered; |
||
35 | |||
36 | /** |
||
37 | * Fixed width; |
||
38 | * |
||
39 | * @var bool |
||
40 | */ |
||
41 | private $fixedWidth; |
||
42 | |||
43 | /** |
||
44 | * Font. |
||
45 | * |
||
46 | * @var string |
||
47 | */ |
||
48 | private $font; |
||
49 | |||
50 | /** |
||
51 | * Pull. |
||
52 | * |
||
53 | * @var string |
||
54 | */ |
||
55 | private $pull; |
||
56 | |||
57 | /** |
||
58 | * Size. |
||
59 | * |
||
60 | * @var string |
||
61 | */ |
||
62 | private $size; |
||
63 | |||
64 | /** |
||
65 | * Constructor. |
||
66 | */ |
||
67 | public function __construct() { |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | public function getAnimation() { |
||
80 | |||
81 | /** |
||
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | public function getBordered() { |
||
87 | |||
88 | /** |
||
89 | * {@inheritdoc} |
||
90 | */ |
||
91 | public function getFixedWidth() { |
||
94 | |||
95 | /** |
||
96 | * {@inheritdoc} |
||
97 | */ |
||
98 | public function getFont() { |
||
101 | |||
102 | /** |
||
103 | * {@inheritdoc} |
||
104 | */ |
||
105 | public function getPull() { |
||
108 | |||
109 | /** |
||
110 | * {@inheritdoc} |
||
111 | */ |
||
112 | public function getSize() { |
||
115 | |||
116 | /** |
||
117 | * {@inheritdoc} |
||
118 | */ |
||
119 | public function setAnimation($animation) { |
||
123 | |||
124 | /** |
||
125 | * {@inheritdoc} |
||
126 | */ |
||
127 | public function setBordered($bordered) { |
||
131 | |||
132 | /** |
||
133 | * {@inheritdoc} |
||
134 | */ |
||
135 | public function setFixedWidth($fixedWidth) { |
||
139 | |||
140 | /** |
||
141 | * {@inheritdoc} |
||
142 | */ |
||
143 | public function setFont($font) { |
||
147 | |||
148 | /** |
||
149 | * {@inheritdoc} |
||
150 | */ |
||
151 | public function setPull($pull) { |
||
155 | |||
156 | /** |
||
157 | * {@inheritdoc} |
||
158 | */ |
||
159 | public function setSize($size) { |
||
163 | |||
164 | } |
||
165 |