Total
-
-
94.74% covered (success)
+
+ 95.45% covered (success)
- 94.74%
- 36 / 38
+ 95.45%
+ 42 / 44
94.44% covered (success)
@@ -74,13 +74,13 @@
Cell
-
-
94.74% covered (success)
+
+ 95.45% covered (success)
- 94.74%
- 36 / 38
+ 95.45%
+ 42 / 44
94.44% covered (success)
@@ -89,7 +89,7 @@
94.44%
17 / 18
- 19.05
+ 21
0.00% covered (danger)
@@ -131,7 +131,7 @@
100.00%
- 3 / 3
+ 6 / 6
100.00% covered (success)
@@ -140,12 +140,12 @@
100.00%
1 / 1
- 1
+ 2
- getTextDirection
+ getTextDirection
100.00% covered (success)
@@ -167,7 +167,7 @@
- setTextDirection
+ setTextDirection
100.00% covered (success)
@@ -189,7 +189,7 @@
- getBgColor
+ getBgColor
100.00% covered (success)
@@ -211,7 +211,7 @@
- setBgColor
+ setBgColor
100.00% covered (success)
@@ -233,7 +233,7 @@
- getGridSpan
+ getGridSpan
100.00% covered (success)
@@ -255,7 +255,7 @@
- setGridSpan
+ setGridSpan
100.00% covered (success)
@@ -277,7 +277,7 @@
- getVMerge
+ getVMerge
100.00% covered (success)
@@ -299,7 +299,7 @@
- setVMerge
+ setVMerge
100.00% covered (success)
@@ -307,7 +307,7 @@
100.00%
- 3 / 3
+ 6 / 6
100.00% covered (success)
@@ -316,12 +316,12 @@
100.00%
1 / 1
- 1
+ 2
- getShading
+ getShading
100.00% covered (success)
@@ -343,7 +343,7 @@
- setShading
+ setShading
100.00% covered (success)
@@ -365,7 +365,7 @@
- getWidth
+ getWidth
100.00% covered (success)
@@ -387,7 +387,7 @@
- setWidth
+ setWidth
0.00% covered (danger)
@@ -409,7 +409,7 @@
- getUnit
+ getUnit
100.00% covered (success)
@@ -431,7 +431,7 @@
- setUnit
+ setUnit
100.00% covered (success)
@@ -453,7 +453,7 @@
- setNoWrap
+ setNoWrap
100.00% covered (success)
@@ -475,7 +475,7 @@
- getNoWrap
+ getNoWrap
100.00% covered (success)
@@ -573,7 +573,7 @@
69
70
71
-
72
+
72
73
74 private $vAlign ;
75
@@ -597,7 +597,7 @@
93
94
95
-
96
+
96
97
98 private $vMerge ;
99
@@ -632,223 +632,235 @@
128
129
130
-
131
+
131
132
133 public function getVAlign ( )
134 {
-
135 return $this -> vAlign ;
+
135 return $this -> vAlign ;
136 }
137
138
139
140
-
141
+
141
142
143
144
145 public function setVAlign ( $value = null )
146 {
-
147 VerticalJc :: validate ( $value ) ;
-
148 $this -> vAlign = $this -> setEnumVal ( $value , VerticalJc :: values ( ) , $this -> vAlign ) ;
+
147 if ( $value === null ) {
+
148 $this -> vAlign = null ;
149
-
150 return $this ;
-
151 }
+
150 return $this ;
+
151 }
152
-
153
-
154
-
155
-
156
-
157
-
158 public function getTextDirection ( )
-
159 {
-
160 return $this -> textDirection ;
-
161 }
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170 public function setTextDirection ( $value = null )
-
171 {
-
172 $enum = [
-
173 self :: TEXT_DIR_BTLR ,
-
174 self :: TEXT_DIR_TBRL ,
-
175 self :: TEXT_DIR_LRTB ,
-
176 self :: TEXT_DIR_LRTBV ,
-
177 self :: TEXT_DIR_TBRLV ,
-
178 self :: TEXT_DIR_TBLRV ,
-
179 ] ;
-
180 $this -> textDirection = $this -> setEnumVal ( $value , $enum , $this -> textDirection ) ;
-
181
-
182 return $this ;
-
183 }
-
184
-
185
-
186
-
187
-
188
-
189
-
190 public function getBgColor ( )
-
191 {
-
192 if ( $this -> shading !== null ) {
-
193 return $this -> shading -> getFill ( ) ;
-
194 }
-
195
-
196 return null ;
-
197 }
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206 public function setBgColor ( $value = null )
-
207 {
-
208 return $this -> setShading ( [ 'fill' => $value ] ) ;
-
209 }
-
210
-
211
-
212
-
213
-
214
-
215
-
216 public function getGridSpan ( )
-
217 {
-
218 return $this -> gridSpan ;
-
219 }
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
-
228 public function setGridSpan ( $value = null )
-
229 {
-
230 $this -> gridSpan = $this -> setIntVal ( $value , $this -> gridSpan ) ;
-
231
-
232 return $this ;
-
233 }
-
234
-
235
-
236
-
237
-
238
-
239
-
240 public function getVMerge ( )
-
241 {
-
242 return $this -> vMerge ;
-
243 }
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252 public function setVMerge ( $value = null )
-
253 {
-
254 $enum = [ self :: VMERGE_RESTART , self :: VMERGE_CONTINUE ] ;
-
255 $this -> vMerge = $this -> setEnumVal ( $value , $enum , $this -> vMerge ) ;
-
256
-
257 return $this ;
-
258 }
-
259
-
260
-
261
-
262
-
263
-
264
-
265 public function getShading ( )
-
266 {
-
267 return $this -> shading ;
-
268 }
-
269
-
270
-
271
-
272
-
273
+
153 VerticalJc :: validate ( $value ) ;
+
154 $this -> vAlign = $this -> setEnumVal ( $value , VerticalJc :: values ( ) , $this -> vAlign ) ;
+
155
+
156 return $this ;
+
157 }
+
158
+
159
+
160
+
161
+
162
+
163
+
164 public function getTextDirection ( )
+
165 {
+
166 return $this -> textDirection ;
+
167 }
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176 public function setTextDirection ( $value = null )
+
177 {
+
178 $enum = [
+
179 self :: TEXT_DIR_BTLR ,
+
180 self :: TEXT_DIR_TBRL ,
+
181 self :: TEXT_DIR_LRTB ,
+
182 self :: TEXT_DIR_LRTBV ,
+
183 self :: TEXT_DIR_TBRLV ,
+
184 self :: TEXT_DIR_TBLRV ,
+
185 ] ;
+
186 $this -> textDirection = $this -> setEnumVal ( $value , $enum , $this -> textDirection ) ;
+
187
+
188 return $this ;
+
189 }
+
190
+
191
+
192
+
193
+
194
+
195
+
196 public function getBgColor ( )
+
197 {
+
198 if ( $this -> shading !== null ) {
+
199 return $this -> shading -> getFill ( ) ;
+
200 }
+
201
+
202 return null ;
+
203 }
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212 public function setBgColor ( $value = null )
+
213 {
+
214 return $this -> setShading ( [ 'fill' => $value ] ) ;
+
215 }
+
216
+
217
+
218
+
219
+
220
+
221
+
222 public function getGridSpan ( )
+
223 {
+
224 return $this -> gridSpan ;
+
225 }
+
226
+
227
+
228
+
229
+
230
+
231
+
232
+
233
+
234 public function setGridSpan ( $value = null )
+
235 {
+
236 $this -> gridSpan = $this -> setIntVal ( $value , $this -> gridSpan ) ;
+
237
+
238 return $this ;
+
239 }
+
240
+
241
+
242
+
243
+
244
+
245
+
246 public function getVMerge ( )
+
247 {
+
248 return $this -> vMerge ;
+
249 }
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258 public function setVMerge ( $value = null )
+
259 {
+
260 if ( $value === null ) {
+
261 $this -> vMerge = null ;
+
262
+
263 return $this ;
+
264 }
+
265
+
266 $enum = [ self :: VMERGE_RESTART , self :: VMERGE_CONTINUE ] ;
+
267 $this -> vMerge = $this -> setEnumVal ( $value , $enum , $this -> vMerge ) ;
+
268
+
269 return $this ;
+
270 }
+
271
+
272
+
273
274
-
275
+
275
276
-
277 public function setShading ( $value = null )
+
277 public function getShading ( )
278 {
-
279 $this -> setObjectVal ( $value , 'Shading' , $this -> shading ) ;
-
280
-
281 return $this ;
-
282 }
-
283
-
284
-
285
+
279 return $this -> shading ;
+
280 }
+
281
+
282
+
283
+
284
+
285
286
-
287
+
287
288
-
289 public function getWidth ( )
+
289 public function setShading ( $value = null )
290 {
-
291 return $this -> width ;
-
292 }
-
293
-
294
-
295
-
296
-
297
+
291 $this -> setObjectVal ( $value , 'Shading' , $this -> shading ) ;
+
292
+
293 return $this ;
+
294 }
+
295
+
296
+
297
298
-
299
+
299
300
-
301 public function setWidth ( $value )
+
301 public function getWidth ( )
302 {
-
303 $this -> width = $this -> setIntVal ( $value ) ;
-
304
-
305 return $this ;
-
306 }
-
307
-
308
-
309
+
303 return $this -> width ;
+
304 }
+
305
+
306
+
307
+
308
+
309
310
-
311
+
311
312
-
313 public function getUnit ( )
+
313 public function setWidth ( $value )
314 {
-
315 return $this -> unit ;
-
316 }
-
317
-
318
-
319
-
320
-
321
-
322
-
323 public function setUnit ( $value )
-
324 {
-
325 $this -> unit = $this -> setEnumVal ( $value , [ TblWidth :: AUTO , TblWidth :: PERCENT , TblWidth :: TWIP ] , TblWidth :: TWIP ) ;
-
326
-
327 return $this ;
+
315 $this -> width = $this -> setIntVal ( $value ) ;
+
316
+
317 return $this ;
+
318 }
+
319
+
320
+
321
+
322
+
323
+
324
+
325 public function getUnit ( )
+
326 {
+
327 return $this -> unit ;
328 }
329
330
-
331
-
332
-
333 public function setNoWrap ( bool $value ) : self
-
334 {
-
335 $this -> noWrap = $this -> setBoolVal ( $value , true ) ;
-
336
-
337 return $this ;
-
338 }
-
339
-
340
-
341
-
342
-
343 public function getNoWrap ( ) : bool
-
344 {
-
345 return $this -> noWrap ;
-
346 }
-
347 }
+
331
+
332
+
333
+
334
+
335 public function setUnit ( $value )
+
336 {
+
337 $this -> unit = $this -> setEnumVal ( $value , [ TblWidth :: AUTO , TblWidth :: PERCENT , TblWidth :: TWIP ] , TblWidth :: TWIP ) ;
+
338
+
339 return $this ;
+
340 }
+
341
+
342
+
343
+
344
+
345 public function setNoWrap ( bool $value ) : self
+
346 {
+
347 $this -> noWrap = $this -> setBoolVal ( $value , true ) ;
+
348
+
349 return $this ;
+
350 }
+
351
+
352
+
353
+
354
+
355 public function getNoWrap ( ) : bool
+
356 {
+
357 return $this -> noWrap ;
+
358 }
+
359 }
@@ -859,7 +871,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Chart.php.html b/coverage/Style/Chart.php.html
index 4015c8560f..2dc3d834b9 100644
--- a/coverage/Style/Chart.php.html
+++ b/coverage/Style/Chart.php.html
@@ -1395,7 +1395,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Extrusion.php.html b/coverage/Style/Extrusion.php.html
index 55db38ea09..0b02345881 100644
--- a/coverage/Style/Extrusion.php.html
+++ b/coverage/Style/Extrusion.php.html
@@ -334,7 +334,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Fill.php.html b/coverage/Style/Fill.php.html
index b59eee29e3..1fd8b0d701 100644
--- a/coverage/Style/Fill.php.html
+++ b/coverage/Style/Fill.php.html
@@ -252,7 +252,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Font.php.html b/coverage/Style/Font.php.html
index b45e9570e5..1553afde88 100644
--- a/coverage/Style/Font.php.html
+++ b/coverage/Style/Font.php.html
@@ -1698,8 +1698,8 @@
292
293 public function __construct ( $type = 'text' , $paragraph = null )
294 {
- 295 $this -> type = $type ;
- 296 $this -> setParagraph ( $paragraph ) ;
+ 295 $this -> type = $type ;
+ 296 $this -> setParagraph ( $paragraph ) ;
297 }
298
299
@@ -1764,7 +1764,7 @@
358
359 public function getName ( )
360 {
- 361 return $this -> name ;
+ 361 return $this -> name ;
362 }
363
364
@@ -1812,7 +1812,7 @@
406
407 public function getSize ( )
408 {
- 409 return $this -> size ;
+ 409 return $this -> size ;
410 }
411
412
@@ -1836,7 +1836,7 @@
430
431 public function getColor ( )
432 {
- 433 return $this -> color ;
+ 433 return $this -> color ;
434 }
435
436
@@ -1860,7 +1860,7 @@
454
455 public function isBold ( )
456 {
- 457 return $this -> bold ;
+ 457 return $this -> bold ;
458 }
459
460
@@ -1884,7 +1884,7 @@
478
479 public function isItalic ( )
480 {
- 481 return $this -> italic ;
+ 481 return $this -> italic ;
482 }
483
484
@@ -1908,7 +1908,7 @@
502
503 public function getUnderline ( )
504 {
- 505 return $this -> underline ;
+ 505 return $this -> underline ;
506 }
507
508
@@ -1932,7 +1932,7 @@
526
527 public function isSuperScript ( )
528 {
- 529 return $this -> superScript ;
+ 529 return $this -> superScript ;
530 }
531
532
@@ -1954,7 +1954,7 @@
548
549 public function isSubScript ( )
550 {
- 551 return $this -> subScript ;
+ 551 return $this -> subScript ;
552 }
553
554
@@ -1974,7 +1974,7 @@
568
569 public function isStrikethrough ( ) : ? bool
570 {
- 571 return $this -> strikethrough ;
+ 571 return $this -> strikethrough ;
572 }
573
574
@@ -1992,7 +1992,7 @@
586
587 public function isDoubleStrikethrough ( ) : ? bool
588 {
- 589 return $this -> doubleStrikethrough ;
+ 589 return $this -> doubleStrikethrough ;
590 }
591
592
@@ -2012,7 +2012,7 @@
606
607 public function isSmallCaps ( )
608 {
- 609 return $this -> smallCaps ;
+ 609 return $this -> smallCaps ;
610 }
611
612
@@ -2034,7 +2034,7 @@
628
629 public function isAllCaps ( )
630 {
- 631 return $this -> allCaps ;
+ 631 return $this -> allCaps ;
632 }
633
634
@@ -2056,7 +2056,7 @@
650
651 public function getFgColor ( )
652 {
- 653 return $this -> fgColor ;
+ 653 return $this -> fgColor ;
654 }
655
656
@@ -2126,7 +2126,7 @@
720
721 public function getSpacing ( )
722 {
- 723 return $this -> spacing ;
+ 723 return $this -> spacing ;
724 }
725
726
@@ -2234,9 +2234,9 @@
828
829 public function setParagraph ( $value = null )
830 {
- 831 $this -> setObjectVal ( $value , 'Paragraph' , $this -> paragraph ) ;
+ 831 $this -> setObjectVal ( $value , 'Paragraph' , $this -> paragraph ) ;
832
- 833 return $this ;
+ 833 return $this ;
834 }
835
836
@@ -2246,7 +2246,7 @@
840
841 public function isRTL ( )
842 {
- 843 return $this -> rtl ?? Settings :: isDefaultRtl ( ) ;
+ 843 return $this -> rtl ?? Settings :: isDefaultRtl ( ) ;
844 }
845
846
@@ -2294,7 +2294,7 @@
888
889 public function getLang ( )
890 {
- 891 return $this -> lang ;
+ 891 return $this -> lang ;
892 }
893
894
@@ -2321,7 +2321,7 @@
915
916 public function isHidden ( )
917 {
- 918 return $this -> hidden ;
+ 918 return $this -> hidden ;
919 }
920
921
@@ -2379,7 +2379,7 @@
973
974 public function getWhiteSpace ( ) : string
975 {
- 976 return $this -> whiteSpace ;
+ 976 return $this -> whiteSpace ;
977 }
978
979
@@ -2399,7 +2399,7 @@
993
994 public function getFallbackFont ( ) : string
995 {
- 996 return $this -> fallbackFont ;
+ 996 return $this -> fallbackFont ;
997 }
998 }
@@ -2412,7 +2412,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Frame.php.html b/coverage/Style/Frame.php.html
index 2d26468033..ededa5f781 100644
--- a/coverage/Style/Frame.php.html
+++ b/coverage/Style/Frame.php.html
@@ -1570,7 +1570,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Image.php.html b/coverage/Style/Image.php.html
index 40ecfb7a6b..2cd580537e 100644
--- a/coverage/Style/Image.php.html
+++ b/coverage/Style/Image.php.html
@@ -760,7 +760,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Indentation.php.html b/coverage/Style/Indentation.php.html
index fb75971e7d..b1969490dd 100644
--- a/coverage/Style/Indentation.php.html
+++ b/coverage/Style/Indentation.php.html
@@ -475,7 +475,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Language.php.html b/coverage/Style/Language.php.html
index 832cc611da..59d2af7e7a 100644
--- a/coverage/Style/Language.php.html
+++ b/coverage/Style/Language.php.html
@@ -604,7 +604,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Line.php.html b/coverage/Style/Line.php.html
index a4e1c83f17..eff1144921 100644
--- a/coverage/Style/Line.php.html
+++ b/coverage/Style/Line.php.html
@@ -712,7 +712,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/LineNumbering.php.html b/coverage/Style/LineNumbering.php.html
index 72f3463ff0..ff70cafeae 100644
--- a/coverage/Style/LineNumbering.php.html
+++ b/coverage/Style/LineNumbering.php.html
@@ -483,7 +483,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/ListItem.php.html b/coverage/Style/ListItem.php.html
index 52ef52ba24..c9610183e4 100644
--- a/coverage/Style/ListItem.php.html
+++ b/coverage/Style/ListItem.php.html
@@ -578,7 +578,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Numbering.php.html b/coverage/Style/Numbering.php.html
index ac68addfa1..ed9131e807 100644
--- a/coverage/Style/Numbering.php.html
+++ b/coverage/Style/Numbering.php.html
@@ -368,7 +368,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/NumberingLevel.php.html b/coverage/Style/NumberingLevel.php.html
index 39b0e10dde..b6c0a4a300 100644
--- a/coverage/Style/NumberingLevel.php.html
+++ b/coverage/Style/NumberingLevel.php.html
@@ -1139,7 +1139,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Outline.php.html b/coverage/Style/Outline.php.html
index 37a107c6a8..2418e5f0ac 100644
--- a/coverage/Style/Outline.php.html
+++ b/coverage/Style/Outline.php.html
@@ -787,7 +787,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Paper.php.html b/coverage/Style/Paper.php.html
index 920cabfd48..5671e04a5c 100644
--- a/coverage/Style/Paper.php.html
+++ b/coverage/Style/Paper.php.html
@@ -354,7 +354,7 @@
136
137 public function __construct ( $size = 'A4' )
138 {
- 139 $this -> setSize ( $size ) ;
+ 139 $this -> setSize ( $size ) ;
140 }
141
142
@@ -364,7 +364,7 @@
146
147 public function getSize ( )
148 {
- 149 return $this -> size ;
+ 149 return $this -> size ;
150 }
151
152
@@ -376,19 +376,19 @@
158
159 public function setSize ( $size )
160 {
- 161 $this -> size = $this -> setEnumVal ( $size , array_keys ( $this -> sizes ) , $this -> size ) ;
+ 161 $this -> size = $this -> setEnumVal ( $size , array_keys ( $this -> sizes ) , $this -> size ) ;
162
- 163 [ $width , $height , $unit ] = $this -> sizes [ $this -> size ] ;
+ 163 [ $width , $height , $unit ] = $this -> sizes [ $this -> size ] ;
164
- 165 if ( $unit == 'mm' ) {
- 166 $this -> width = Converter :: cmToTwip ( $width / 10 ) ;
- 167 $this -> height = Converter :: cmToTwip ( $height / 10 ) ;
+ 165 if ( $unit == 'mm' ) {
+ 166 $this -> width = Converter :: cmToTwip ( $width / 10 ) ;
+ 167 $this -> height = Converter :: cmToTwip ( $height / 10 ) ;
168 } else {
169 $this -> width = Converter :: inchToTwip ( $width ) ;
170 $this -> height = Converter :: inchToTwip ( $height ) ;
171 }
172
- 173 return $this ;
+ 173 return $this ;
174 }
175
176
@@ -398,7 +398,7 @@
180
181 public function getWidth ( )
182 {
- 183 return $this -> width ;
+ 183 return $this -> width ;
184 }
185
186
@@ -408,7 +408,7 @@
190
191 public function getHeight ( )
192 {
- 193 return $this -> height ;
+ 193 return $this -> height ;
194 }
195 }
@@ -421,7 +421,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Paragraph.php.html b/coverage/Style/Paragraph.php.html
index 4a1a622452..bc03978c71 100644
--- a/coverage/Style/Paragraph.php.html
+++ b/coverage/Style/Paragraph.php.html
@@ -1462,7 +1462,7 @@
254
255 public function getAlignment ( )
256 {
- 257 return $this -> alignment ;
+ 257 return $this -> alignment ;
258 }
259
260
@@ -1536,7 +1536,7 @@
328
329 public function getIndentation ( )
330 {
- 331 return $this -> indentation ;
+ 331 return $this -> indentation ;
332 }
333
334
@@ -1606,7 +1606,7 @@
398
399 public function getSpace ( )
400 {
- 401 return $this -> spacing ;
+ 401 return $this -> spacing ;
402 }
403
404
@@ -1720,7 +1720,7 @@
512
513 public function getLineHeight ( )
514 {
- 515 return $this -> lineHeight ;
+ 515 return $this -> lineHeight ;
516 }
517
518
@@ -1826,7 +1826,7 @@
618
619 public function hasPageBreakBefore ( )
620 {
- 621 return $this -> pageBreakBefore ;
+ 621 return $this -> pageBreakBefore ;
622 }
623
624
@@ -1972,7 +1972,7 @@
764
765 public function isBidi ( )
766 {
- 767 return $this -> bidi ?? Settings :: isDefaultRtl ( ) ;
+ 767 return $this -> bidi ?? Settings :: isDefaultRtl ( ) ;
768 }
769
770
@@ -2041,7 +2041,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Row.php.html b/coverage/Style/Row.php.html
index a80d724a58..45501ca3a8 100644
--- a/coverage/Style/Row.php.html
+++ b/coverage/Style/Row.php.html
@@ -312,7 +312,7 @@
50
51 public function __construct ( )
52 {
- 53 }
+ 53 }
54
55
56
@@ -321,7 +321,7 @@
59
60 public function isTblHeader ( )
61 {
- 62 return $this -> tblHeader ;
+ 62 return $this -> tblHeader ;
63 }
64
65
@@ -396,7 +396,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Section.php.html b/coverage/Style/Section.php.html
index 990c5a7001..c9141d722f 100644
--- a/coverage/Style/Section.php.html
+++ b/coverage/Style/Section.php.html
@@ -924,7 +924,7 @@
156
157 public function __construct ( )
158 {
- 159 $this -> setPaperSize ( ) ;
+ 159 $this -> setPaperSize ( ) ;
160 }
161
162
@@ -934,7 +934,7 @@
166
167 public function getPaperSize ( )
168 {
- 169 return $this -> paper -> getSize ( ) ;
+ 169 return $this -> paper -> getSize ( ) ;
170 }
171
172
@@ -946,17 +946,17 @@
178
179 public function setPaperSize ( $value = '' )
180 {
- 181 if ( ! $value ) {
- 182 $value = Settings :: getDefaultPaper ( ) ;
+ 181 if ( ! $value ) {
+ 182 $value = Settings :: getDefaultPaper ( ) ;
183 }
- 184 if ( $this -> paper === null ) {
- 185 $this -> paper = new Paper ( ) ;
+ 184 if ( $this -> paper === null ) {
+ 185 $this -> paper = new Paper ( ) ;
186 }
- 187 $this -> paper -> setSize ( $value ) ;
- 188 $this -> pageSizeW = $this -> paper -> getWidth ( ) ;
- 189 $this -> pageSizeH = $this -> paper -> getHeight ( ) ;
+ 187 $this -> paper -> setSize ( $value ) ;
+ 188 $this -> pageSizeW = $this -> paper -> getWidth ( ) ;
+ 189 $this -> pageSizeH = $this -> paper -> getHeight ( ) ;
190
- 191 return $this ;
+ 191 return $this ;
192 }
193
194
@@ -1008,7 +1008,7 @@
240
241 public function getOrientation ( )
242 {
- 243 return $this -> orientation ;
+ 243 return $this -> orientation ;
244 }
245
246
@@ -1310,7 +1310,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Shading.php.html b/coverage/Style/Shading.php.html
index 1d6956d3da..7fc24b73d7 100644
--- a/coverage/Style/Shading.php.html
+++ b/coverage/Style/Shading.php.html
@@ -421,7 +421,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Shadow.php.html b/coverage/Style/Shadow.php.html
index 2e198bb64c..e40df98dab 100644
--- a/coverage/Style/Shadow.php.html
+++ b/coverage/Style/Shadow.php.html
@@ -325,7 +325,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Shape.php.html b/coverage/Style/Shape.php.html
index f27012c8f6..f86b575409 100644
--- a/coverage/Style/Shape.php.html
+++ b/coverage/Style/Shape.php.html
@@ -709,7 +709,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Spacing.php.html b/coverage/Style/Spacing.php.html
index b62cbadad9..bfe9b7224a 100644
--- a/coverage/Style/Spacing.php.html
+++ b/coverage/Style/Spacing.php.html
@@ -478,7 +478,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/TOC.php.html b/coverage/Style/TOC.php.html
index a51271c35e..b77ba30225 100644
--- a/coverage/Style/TOC.php.html
+++ b/coverage/Style/TOC.php.html
@@ -377,7 +377,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Tab.php.html b/coverage/Style/Tab.php.html
index 9c96471574..80992a60d1 100644
--- a/coverage/Style/Tab.php.html
+++ b/coverage/Style/Tab.php.html
@@ -446,7 +446,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/Table.php.html b/coverage/Style/Table.php.html
index 4aba223801..a57bb188a0 100644
--- a/coverage/Style/Table.php.html
+++ b/coverage/Style/Table.php.html
@@ -1363,14 +1363,14 @@
177 public function __construct ( $tableStyle = null , $firstRowStyle = null )
178 {
179
- 180 if ( $firstRowStyle !== null && is_array ( $firstRowStyle ) ) {
+ 180 if ( $firstRowStyle !== null && is_array ( $firstRowStyle ) ) {
181 $this -> firstRowStyle = clone $this ;
182 $this -> firstRowStyle -> isFirstRow = true ;
183 unset ( $this -> firstRowStyle -> firstRowStyle , $this -> firstRowStyle -> borderInsideHSize , $this -> firstRowStyle -> borderInsideHColor , $this -> firstRowStyle -> borderInsideVSize , $this -> firstRowStyle -> borderInsideVColor , $this -> firstRowStyle -> cellMarginTop , $this -> firstRowStyle -> cellMarginLeft , $this -> firstRowStyle -> cellMarginRight , $this -> firstRowStyle -> cellMarginBottom , $this -> firstRowStyle -> cellSpacing ) ;
184 $this -> firstRowStyle -> setStyleByArray ( $firstRowStyle ) ;
185 }
186
- 187 if ( $tableStyle !== null && is_array ( $tableStyle ) ) {
+ 187 if ( $tableStyle !== null && is_array ( $tableStyle ) ) {
188 $this -> setStyleByArray ( $tableStyle ) ;
189 }
190 }
@@ -1988,7 +1988,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/TablePosition.php.html b/coverage/Style/TablePosition.php.html
index f5976c8332..28f169121f 100644
--- a/coverage/Style/TablePosition.php.html
+++ b/coverage/Style/TablePosition.php.html
@@ -1006,7 +1006,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/TextBox.php.html b/coverage/Style/TextBox.php.html
index 96d7ae915c..6e6292f8f5 100644
--- a/coverage/Style/TextBox.php.html
+++ b/coverage/Style/TextBox.php.html
@@ -717,7 +717,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Style/dashboard.html b/coverage/Style/dashboard.html
index fbf538f3c3..c756d251bb 100644
--- a/coverage/Style/dashboard.html
+++ b/coverage/Style/dashboard.html
@@ -111,7 +111,7 @@ Insufficient Coverage
- setWidth 0%
+ setWidth 0%
setLegendPosition 0%
setNumId 0%
validateLocale 88%
@@ -141,7 +141,7 @@ Project Risks
@@ -228,7 +228,7 @@ Project Risks
chart.yAxis.axisLabel('Cyclomatic Complexity');
d3.select('#classComplexity svg')
- .datum(getComplexityData([[100,41,"PhpOffice\\PhpWord\\Style\\AbstractStyle<\/a>"],[100,39," PhpOffice\\PhpWord\\Style\\Border<\/a>"],[94.73684210526315,19," PhpOffice\\PhpWord\\Style\\Cell<\/a>"],[94.64285714285714,35," PhpOffice\\PhpWord\\Style\\Chart<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Extrusion<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Fill<\/a>"],[100,61," PhpOffice\\PhpWord\\Style\\Font<\/a>"],[100,36," PhpOffice\\PhpWord\\Style\\Frame<\/a>"],[100,17," PhpOffice\\PhpWord\\Style\\Image<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Indentation<\/a>"],[96.29629629629629,20," PhpOffice\\PhpWord\\Style\\Language<\/a>"],[100,14," PhpOffice\\PhpWord\\Style\\Line<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\LineNumbering<\/a>"],[98.4251968503937,14," PhpOffice\\PhpWord\\Style\\ListItem<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Numbering<\/a>"],[100,27," PhpOffice\\PhpWord\\Style\\NumberingLevel<\/a>"],[100,16," PhpOffice\\PhpWord\\Style\\Outline<\/a>"],[100,6," PhpOffice\\PhpWord\\Style\\Paper<\/a>"],[100,58," PhpOffice\\PhpWord\\Style\\Paragraph<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Row<\/a>"],[100,35," PhpOffice\\PhpWord\\Style\\Section<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Shading<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Shadow<\/a>"],[100,15," PhpOffice\\PhpWord\\Style\\Shape<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Spacing<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\TOC<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Tab<\/a>"],[100,59," PhpOffice\\PhpWord\\Style\\Table<\/a>"],[100,21," PhpOffice\\PhpWord\\Style\\TablePosition<\/a>"],[100,19," PhpOffice\\PhpWord\\Style\\TextBox<\/a>"]], 'Class Complexity'))
+ .datum(getComplexityData([[100,41," PhpOffice\\PhpWord\\Style\\AbstractStyle<\/a>"],[100,39," PhpOffice\\PhpWord\\Style\\Border<\/a>"],[95.45454545454545,21," PhpOffice\\PhpWord\\Style\\Cell<\/a>"],[94.64285714285714,35," PhpOffice\\PhpWord\\Style\\Chart<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Extrusion<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Fill<\/a>"],[100,61," PhpOffice\\PhpWord\\Style\\Font<\/a>"],[100,36," PhpOffice\\PhpWord\\Style\\Frame<\/a>"],[100,17," PhpOffice\\PhpWord\\Style\\Image<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Indentation<\/a>"],[96.29629629629629,20," PhpOffice\\PhpWord\\Style\\Language<\/a>"],[100,14," PhpOffice\\PhpWord\\Style\\Line<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\LineNumbering<\/a>"],[98.4251968503937,14," PhpOffice\\PhpWord\\Style\\ListItem<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Numbering<\/a>"],[100,27," PhpOffice\\PhpWord\\Style\\NumberingLevel<\/a>"],[100,16," PhpOffice\\PhpWord\\Style\\Outline<\/a>"],[100,6," PhpOffice\\PhpWord\\Style\\Paper<\/a>"],[100,58," PhpOffice\\PhpWord\\Style\\Paragraph<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Row<\/a>"],[100,35," PhpOffice\\PhpWord\\Style\\Section<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Shading<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Shadow<\/a>"],[100,15," PhpOffice\\PhpWord\\Style\\Shape<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Spacing<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\TOC<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Tab<\/a>"],[100,59," PhpOffice\\PhpWord\\Style\\Table<\/a>"],[100,21," PhpOffice\\PhpWord\\Style\\TablePosition<\/a>"],[100,19," PhpOffice\\PhpWord\\Style\\TextBox<\/a>"]], 'Class Complexity'))
.transition()
.duration(500)
.call(chart);
@@ -252,7 +252,7 @@ Project Risks
chart.yAxis.axisLabel('Method Complexity');
d3.select('#methodComplexity svg')
- .datum(getComplexityData([[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::isAuto<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setAuto<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::getChildStyleValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleByArray<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNonEmptyVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setBoolVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNumericVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIntVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setFloatVal<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\AbstractStyle::setEnumVal<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setObjectVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setPairedVal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::hasBorder<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getTextDirection<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setTextDirection<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVMerge<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setVMerge<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getWidth<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Cell::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::is3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::set3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::isShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getLegendPosition<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Chart::setLegendPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getDataLabelOptions<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Chart::setDataLabelOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLang<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Font::setLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Frame::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setHanging<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Language::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setBidirectional<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getBidirectional<\/a>"],[88.88888888888889,8," PhpOffice\\PhpWord\\Style\\Language::validateLocale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::isFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setRestart<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::setListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumId<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\ListItem::setNumId<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\ListItem::getListTypeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getLevels<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Numbering::setLevels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\NumberingLevel::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getSize<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paper::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getHeight<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Paragraph::setStyleValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getLineHeight<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Paragraph::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTabs<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setTabs<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPaperSize<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Section::setPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setSettingValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Section::setOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPortrait<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLandscape<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setPosition<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Table::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getFirstRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::hasMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getAlignment<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getLayout<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setLayout<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getTableOnlyProperty<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setTableOnlyProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::isBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMargin<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\TextBox::hasInnerMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderColor<\/a>"]], 'Method Complexity'))
+ .datum(getComplexityData([[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::isAuto<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setAuto<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::getChildStyleValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleByArray<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNonEmptyVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setBoolVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNumericVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIntVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setFloatVal<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\AbstractStyle::setEnumVal<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setObjectVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setPairedVal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::hasBorder<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVAlign<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getTextDirection<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setTextDirection<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVMerge<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::setVMerge<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getWidth<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Cell::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::is3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::set3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::isShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getLegendPosition<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Chart::setLegendPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getDataLabelOptions<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Chart::setDataLabelOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLang<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Font::setLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Frame::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setHanging<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Language::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setBidirectional<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getBidirectional<\/a>"],[88.88888888888889,8," PhpOffice\\PhpWord\\Style\\Language::validateLocale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::isFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setRestart<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::setListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumId<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\ListItem::setNumId<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\ListItem::getListTypeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getLevels<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Numbering::setLevels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\NumberingLevel::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getSize<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paper::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getHeight<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Paragraph::setStyleValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getLineHeight<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Paragraph::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTabs<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setTabs<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPaperSize<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Section::setPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setSettingValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Section::setOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPortrait<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLandscape<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setPosition<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Table::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getFirstRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::hasMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getAlignment<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getLayout<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setLayout<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getTableOnlyProperty<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setTableOnlyProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::isBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMargin<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\TextBox::hasInnerMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderColor<\/a>"]], 'Method Complexity'))
.transition()
.duration(500)
.call(chart);
diff --git a/coverage/Style/index.html b/coverage/Style/index.html
index b0371d4547..c2f00936e7 100644
--- a/coverage/Style/index.html
+++ b/coverage/Style/index.html
@@ -45,13 +45,13 @@
Total
-
-
99.37% covered (success)
+
+ 99.38% covered (success)
- 99.37%
- 1266 / 1274
+ 99.38%
+ 1272 / 1280
diff --git a/coverage/Writer/HTML/Style/AbstractStyle.php.html b/coverage/Writer/HTML/Style/AbstractStyle.php.html
index f2150d87f4..98e1806a8b 100644
--- a/coverage/Writer/HTML/Style/AbstractStyle.php.html
+++ b/coverage/Writer/HTML/Style/AbstractStyle.php.html
@@ -309,7 +309,7 @@
55
56 public function __construct ( $style = null )
57 {
- 58 $this -> style = $style ;
+ 58 $this -> style = $style ;
59 }
60
61
@@ -319,7 +319,7 @@
65
66 public function setParentWriter ( $writer ) : void
67 {
- 68 $this -> parentWriter = $writer ;
+ 68 $this -> parentWriter = $writer ;
69 }
70
71
@@ -339,11 +339,11 @@
85
86 public function getStyle ( )
87 {
- 88 if ( ! $this -> style instanceof StyleAbstract && ! is_array ( $this -> style ) ) {
+ 88 if ( ! $this -> style instanceof StyleAbstract && ! is_array ( $this -> style ) ) {
89 return '' ;
90 }
91
- 92 return $this -> style ;
+ 92 return $this -> style ;
93 }
94
95
@@ -355,18 +355,18 @@
101
102 protected function assembleCss ( $css )
103 {
- 104 $pairs = [ ] ;
- 105 $string = '' ;
- 106 foreach ( $css as $key => $value ) {
- 107 if ( $value != '' ) {
- 108 $pairs [ ] = $key . ': ' . $value ;
+ 104 $pairs = [ ] ;
+ 105 $string = '' ;
+ 106 foreach ( $css as $key => $value ) {
+ 107 if ( $value != '' ) {
+ 108 $pairs [ ] = $key . ': ' . $value ;
109 }
110 }
- 111 if ( ! empty ( $pairs ) ) {
- 112 $string = implode ( '; ' , $pairs ) . ';' ;
+ 111 if ( ! empty ( $pairs ) ) {
+ 112 $string = implode ( '; ' , $pairs ) . ';' ;
113 }
114
- 115 return $string ;
+ 115 return $string ;
116 }
117
118
@@ -379,7 +379,7 @@
125
126 protected function getValueIf ( $condition , $value )
127 {
- 128 return $condition == true ? $value : '' ;
+ 128 return $condition == true ? $value : '' ;
129 }
130 }
@@ -392,7 +392,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/HTML/Style/Font.php.html b/coverage/Writer/HTML/Style/Font.php.html
index 795d4662af..ce9c332709 100644
--- a/coverage/Writer/HTML/Style/Font.php.html
+++ b/coverage/Writer/HTML/Style/Font.php.html
@@ -187,48 +187,48 @@
33
34 public function write ( )
35 {
- 36 $style = $this -> getStyle ( ) ;
- 37 if ( ! $style instanceof FontStyle ) {
+ 36 $style = $this -> getStyle ( ) ;
+ 37 if ( ! $style instanceof FontStyle ) {
38 return '' ;
39 }
- 40 $css = [ ] ;
+ 40 $css = [ ] ;
41
- 42 $font = $this -> getFontFamily ( $style -> getName ( ) , $style -> getFallbackFont ( ) ) ;
- 43 $size = $style -> getSize ( ) ;
- 44 $color = $style -> getColor ( ) ;
- 45 $fgColor = $style -> getFgColor ( ) ;
- 46 $underline = $style -> getUnderline ( ) != FontStyle :: UNDERLINE_NONE ;
- 47 $lineThrough = $style -> isStrikethrough ( ) || $style -> isDoubleStrikethrough ( ) ;
+ 42 $font = $this -> getFontFamily ( $style -> getName ( ) , $style -> getFallbackFont ( ) ) ;
+ 43 $size = $style -> getSize ( ) ;
+ 44 $color = $style -> getColor ( ) ;
+ 45 $fgColor = $style -> getFgColor ( ) ;
+ 46 $underline = $style -> getUnderline ( ) != FontStyle :: UNDERLINE_NONE ;
+ 47 $lineThrough = $style -> isStrikethrough ( ) || $style -> isDoubleStrikethrough ( ) ;
48
- 49 $css [ 'font-family' ] = $this -> getValueIf ( ! empty ( $font ) , $font ) ;
- 50 $css [ 'font-size' ] = $this -> getValueIf ( $size !== null , " { $size } pt " ) ;
- 51 $css [ 'color' ] = $this -> getValueIf ( $color !== null , " # { $color } " ) ;
- 52 $css [ 'background' ] = $this -> getValueIf ( $fgColor != '' , $fgColor ) ;
- 53 $css [ 'font-weight' ] = $this -> getValueIf ( $style -> isBold ( ) , 'bold' ) ;
- 54 $css [ 'font-style' ] = $this -> getValueIf ( $style -> isItalic ( ) , 'italic' ) ;
- 55 $css [ 'vertical-align' ] = '' ;
- 56 $css [ 'vertical-align' ] .= $this -> getValueIf ( $style -> isSuperScript ( ) , 'super' ) ;
- 57 $css [ 'vertical-align' ] .= $this -> getValueIf ( $style -> isSubScript ( ) , 'sub' ) ;
- 58 $css [ 'text-decoration' ] = '' ;
- 59 $css [ 'text-decoration' ] .= $this -> getValueIf ( $underline , 'underline ' ) ;
- 60 $css [ 'text-decoration' ] .= $this -> getValueIf ( $lineThrough , 'line-through ' ) ;
- 61 $css [ 'text-transform' ] = $this -> getValueIf ( $style -> isAllCaps ( ) , 'uppercase' ) ;
- 62 $css [ 'font-variant' ] = $this -> getValueIf ( $style -> isSmallCaps ( ) , 'small-caps' ) ;
- 63 $css [ 'display' ] = $this -> getValueIf ( $style -> isHidden ( ) , 'none' ) ;
- 64 $whitespace = $style -> getWhiteSpace ( ) ;
- 65 if ( $whitespace ) {
+ 49 $css [ 'font-family' ] = $this -> getValueIf ( ! empty ( $font ) , $font ) ;
+ 50 $css [ 'font-size' ] = $this -> getValueIf ( $size !== null , " { $size } pt " ) ;
+ 51 $css [ 'color' ] = $this -> getValueIf ( $color !== null , " # { $color } " ) ;
+ 52 $css [ 'background' ] = $this -> getValueIf ( $fgColor != '' , $fgColor ) ;
+ 53 $css [ 'font-weight' ] = $this -> getValueIf ( $style -> isBold ( ) , 'bold' ) ;
+ 54 $css [ 'font-style' ] = $this -> getValueIf ( $style -> isItalic ( ) , 'italic' ) ;
+ 55 $css [ 'vertical-align' ] = '' ;
+ 56 $css [ 'vertical-align' ] .= $this -> getValueIf ( $style -> isSuperScript ( ) , 'super' ) ;
+ 57 $css [ 'vertical-align' ] .= $this -> getValueIf ( $style -> isSubScript ( ) , 'sub' ) ;
+ 58 $css [ 'text-decoration' ] = '' ;
+ 59 $css [ 'text-decoration' ] .= $this -> getValueIf ( $underline , 'underline ' ) ;
+ 60 $css [ 'text-decoration' ] .= $this -> getValueIf ( $lineThrough , 'line-through ' ) ;
+ 61 $css [ 'text-transform' ] = $this -> getValueIf ( $style -> isAllCaps ( ) , 'uppercase' ) ;
+ 62 $css [ 'font-variant' ] = $this -> getValueIf ( $style -> isSmallCaps ( ) , 'small-caps' ) ;
+ 63 $css [ 'display' ] = $this -> getValueIf ( $style -> isHidden ( ) , 'none' ) ;
+ 64 $whitespace = $style -> getWhiteSpace ( ) ;
+ 65 if ( $whitespace ) {
66 $css [ 'white-space' ] = $whitespace ;
67 }
68
- 69 $spacing = $style -> getSpacing ( ) ;
- 70 $css [ 'letter-spacing' ] = $this -> getValueIf ( null !== $spacing , ( $spacing / 20 ) . 'pt' ) ;
- 71 if ( $style -> isRTL ( ) ) {
+ 69 $spacing = $style -> getSpacing ( ) ;
+ 70 $css [ 'letter-spacing' ] = $this -> getValueIf ( null !== $spacing , ( $spacing / 20 ) . 'pt' ) ;
+ 71 if ( $style -> isRTL ( ) ) {
72 $css [ 'direction' ] = 'rtl' ;
- 73 } elseif ( $style -> isRTL ( ) === false ) {
+ 73 } elseif ( $style -> isRTL ( ) === false ) {
74 $css [ 'direction' ] = 'ltr' ;
75 }
76
- 77 return $this -> assembleCss ( $css ) ;
+ 77 return $this -> assembleCss ( $css ) ;
78 }
79
80
@@ -236,8 +236,8 @@
82
83 private function getFontFamily ( ? string $font , string $genericFont ) : string
84 {
- 85 if ( empty ( $font ) ) {
- 86 return '' ;
+ 85 if ( empty ( $font ) ) {
+ 86 return '' ;
87 }
88 $fontfamily = "'" . htmlspecialchars ( $font , ENT_QUOTES , 'UTF-8' ) . "'" ;
89 if ( ! empty ( $genericFont ) ) {
@@ -257,7 +257,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/HTML/Style/Generic.php.html b/coverage/Writer/HTML/Style/Generic.php.html
index 767ae3a212..b5227d4e2a 100644
--- a/coverage/Writer/HTML/Style/Generic.php.html
+++ b/coverage/Writer/HTML/Style/Generic.php.html
@@ -163,14 +163,14 @@
31
32 public function write ( )
33 {
- 34 $style = $this -> getStyle ( ) ;
- 35 $css = [ ] ;
+ 34 $style = $this -> getStyle ( ) ;
+ 35 $css = [ ] ;
36
- 37 if ( is_array ( $style ) && ! empty ( $style ) ) {
- 38 $css = $style ;
+ 37 if ( is_array ( $style ) && ! empty ( $style ) ) {
+ 38 $css = $style ;
39 }
40
- 41 return $this -> assembleCss ( $css ) ;
+ 41 return $this -> assembleCss ( $css ) ;
42 }
43 }
@@ -183,7 +183,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/HTML/Style/Image.php.html b/coverage/Writer/HTML/Style/Image.php.html
index 186168419c..c089bf0681 100644
--- a/coverage/Writer/HTML/Style/Image.php.html
+++ b/coverage/Writer/HTML/Style/Image.php.html
@@ -187,7 +187,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/HTML/Style/Paragraph.php.html b/coverage/Writer/HTML/Style/Paragraph.php.html
index 03ce46eff2..a9cd4b3dc0 100644
--- a/coverage/Writer/HTML/Style/Paragraph.php.html
+++ b/coverage/Writer/HTML/Style/Paragraph.php.html
@@ -167,14 +167,14 @@
35
36 public function write ( )
37 {
- 38 $style = $this -> getStyle ( ) ;
- 39 if ( ! $style instanceof \PhpOffice\PhpWord\Style\Paragraph ) {
+ 38 $style = $this -> getStyle ( ) ;
+ 39 if ( ! $style instanceof \PhpOffice\PhpWord\Style\Paragraph ) {
40 return '' ;
41 }
- 42 $css = [ ] ;
+ 42 $css = [ ] ;
43
44
- 45 if ( '' !== $style -> getAlignment ( ) ) {
+ 45 if ( '' !== $style -> getAlignment ( ) ) {
46 $textAlign = '' ;
47
48 switch ( $style -> getAlignment ( ) ) {
@@ -214,8 +214,8 @@
82 }
83
84
- 85 $spacing = $style -> getSpace ( ) ;
- 86 if ( null !== $spacing ) {
+ 85 $spacing = $style -> getSpace ( ) ;
+ 86 if ( null !== $spacing ) {
87 $before = $spacing -> getBefore ( ) ;
88 $after = $spacing -> getAfter ( ) ;
89 $css [ 'margin-top' ] = $this -> getValueIf ( null !== $before , ( $before / 20 ) . 'pt' ) ;
@@ -223,14 +223,14 @@
91 }
92
93
- 94 $lineHeight = $style -> getLineHeight ( ) ;
- 95 if ( ! empty ( $lineHeight ) ) {
+ 94 $lineHeight = $style -> getLineHeight ( ) ;
+ 95 if ( ! empty ( $lineHeight ) ) {
96 $css [ 'line-height' ] = $lineHeight ;
97 }
98
99
- 100 $indentation = $style -> getIndentation ( ) ;
- 101 if ( $indentation ) {
+ 100 $indentation = $style -> getIndentation ( ) ;
+ 101 if ( $indentation ) {
102 $inches = $indentation -> getLeft ( ) * 1.0 / Converter :: INCH_TO_TWIP ;
103 $css [ $this -> getParentWriter ( ) instanceof TCPDF ? 'text-indent' : 'margin-left' ] = ( (string) $inches ) . 'in' ;
104
@@ -239,16 +239,16 @@
107 }
108
109
- 110 if ( $style -> hasPageBreakBefore ( ) ) {
+ 110 if ( $style -> hasPageBreakBefore ( ) ) {
111 $css [ 'page-break-before' ] = 'always' ;
112 }
113
114
- 115 if ( $style -> isBidi ( ) ) {
+ 115 if ( $style -> isBidi ( ) ) {
116 $css [ 'direction' ] = 'rtl' ;
117 }
118
- 119 return $this -> assembleCss ( $css ) ;
+ 119 return $this -> assembleCss ( $css ) ;
120 }
121 }
@@ -261,7 +261,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/HTML/Style/Table.php.html b/coverage/Writer/HTML/Style/Table.php.html
index c6b42e8db1..0b01aa4918 100644
--- a/coverage/Writer/HTML/Style/Table.php.html
+++ b/coverage/Writer/HTML/Style/Table.php.html
@@ -160,59 +160,59 @@
28
29 public function write ( )
30 {
- 31 $style = $this -> getStyle ( ) ;
- 32 if ( ! $style instanceof StyleTable && ! $style instanceof StyleCell ) {
+ 31 $style = $this -> getStyle ( ) ;
+ 32 if ( ! $style instanceof StyleTable && ! $style instanceof StyleCell ) {
33 return '' ;
34 }
35
- 36 $css = [ ] ;
- 37 if ( is_object ( $style ) && method_exists ( $style , 'getLayout' ) ) {
+ 36 $css = [ ] ;
+ 37 if ( is_object ( $style ) && method_exists ( $style , 'getLayout' ) ) {
38 if ( $style -> getLayout ( ) == StyleTable :: LAYOUT_FIXED ) {
39 $css [ 'table-layout' ] = 'fixed' ;
40 } elseif ( $style -> getLayout ( ) == StyleTable :: LAYOUT_AUTO ) {
41 $css [ 'table-layout' ] = 'auto' ;
42 }
43 }
- 44 if ( is_object ( $style ) && method_exists ( $style , 'isBidiVisual' ) ) {
+ 44 if ( is_object ( $style ) && method_exists ( $style , 'isBidiVisual' ) ) {
45 if ( $style -> isBidiVisual ( ) ) {
46 $css [ 'direction' ] = 'rtl' ;
47 }
48 }
- 49 if ( is_object ( $style ) && method_exists ( $style , 'getVAlign' ) ) {
- 50 $css [ 'vertical-align' ] = $style -> getVAlign ( ) ;
+ 49 if ( is_object ( $style ) && method_exists ( $style , 'getVAlign' ) ) {
+ 50 $css [ 'vertical-align' ] = $style -> getVAlign ( ) ;
51 }
52
- 53 foreach ( [ 'Top' , 'Left' , 'Bottom' , 'Right' ] as $direction ) {
- 54 $method = 'getBorder' . $direction . 'Style' ;
- 55 if ( method_exists ( $style , $method ) ) {
- 56 $outval = $style -> { $method } ( ) ;
- 57 if ( $outval === 'single' ) {
+ 53 foreach ( [ 'Top' , 'Left' , 'Bottom' , 'Right' ] as $direction ) {
+ 54 $method = 'getBorder' . $direction . 'Style' ;
+ 55 if ( method_exists ( $style , $method ) ) {
+ 56 $outval = $style -> { $method } ( ) ;
+ 57 if ( $outval === 'single' ) {
58 $outval = 'solid' ;
59 }
- 60 if ( is_string ( $outval ) && 1 == preg_match ( '/^[a-z]+$/' , $outval ) ) {
+ 60 if ( is_string ( $outval ) && 1 == preg_match ( '/^[a-z]+$/' , $outval ) ) {
61 $css [ 'border-' . lcfirst ( $direction ) . '-style' ] = $outval ;
62 }
63 }
64
- 65 $method = 'getBorder' . $direction . 'Color' ;
- 66 if ( method_exists ( $style , $method ) ) {
- 67 $outval = $style -> { $method } ( ) ;
- 68 if ( is_string ( $outval ) && 1 == preg_match ( '/^[a-z]+$/' , $outval ) ) {
+ 65 $method = 'getBorder' . $direction . 'Color' ;
+ 66 if ( method_exists ( $style , $method ) ) {
+ 67 $outval = $style -> { $method } ( ) ;
+ 68 if ( is_string ( $outval ) && 1 == preg_match ( '/^[a-z]+$/' , $outval ) ) {
69 $css [ 'border-' . lcfirst ( $direction ) . '-color' ] = $outval ;
70 }
71 }
72
- 73 $method = 'getBorder' . $direction . 'Size' ;
- 74 if ( method_exists ( $style , $method ) ) {
- 75 $outval = $style -> { $method } ( ) ;
- 76 if ( is_numeric ( $outval ) ) {
+ 73 $method = 'getBorder' . $direction . 'Size' ;
+ 74 if ( method_exists ( $style , $method ) ) {
+ 75 $outval = $style -> { $method } ( ) ;
+ 76 if ( is_numeric ( $outval ) ) {
77
78 $css [ 'border-' . lcfirst ( $direction ) . '-width' ] = ( (string) ( $outval / 20 ) ) . 'pt' ;
79 }
80 }
81 }
82
- 83 return $this -> assembleCss ( $css ) ;
+ 83 return $this -> assembleCss ( $css ) ;
84 }
85 }
@@ -225,7 +225,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/HTML/Style/dashboard.html b/coverage/Writer/HTML/Style/dashboard.html
index 95dc5fc5c5..52eaf81551 100644
--- a/coverage/Writer/HTML/Style/dashboard.html
+++ b/coverage/Writer/HTML/Style/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/coverage/Writer/HTML/Style/index.html b/coverage/Writer/HTML/Style/index.html
index cfcef2c2a2..223c0ff72c 100644
--- a/coverage/Writer/HTML/Style/index.html
+++ b/coverage/Writer/HTML/Style/index.html
@@ -253,7 +253,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/HTML/dashboard.html b/coverage/Writer/HTML/dashboard.html
index 258cf80c71..a466a4257d 100644
--- a/coverage/Writer/HTML/dashboard.html
+++ b/coverage/Writer/HTML/dashboard.html
@@ -139,7 +139,7 @@ Project Risks
diff --git a/coverage/Writer/HTML/index.html b/coverage/Writer/HTML/index.html
index b821cc35dc..7257548038 100644
--- a/coverage/Writer/HTML/index.html
+++ b/coverage/Writer/HTML/index.html
@@ -168,7 +168,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText.php.html b/coverage/Writer/ODText.php.html
index 1945fa2ecf..86ee1d43a9 100644
--- a/coverage/Writer/ODText.php.html
+++ b/coverage/Writer/ODText.php.html
@@ -274,7 +274,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/AbstractElement.php.html b/coverage/Writer/ODText/Element/AbstractElement.php.html
index 62ed2dc65c..10c19d2e73 100644
--- a/coverage/Writer/ODText/Element/AbstractElement.php.html
+++ b/coverage/Writer/ODText/Element/AbstractElement.php.html
@@ -117,7 +117,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Container.php.html b/coverage/Writer/ODText/Element/Container.php.html
index 4f9af5a2e6..a771dc335c 100644
--- a/coverage/Writer/ODText/Element/Container.php.html
+++ b/coverage/Writer/ODText/Element/Container.php.html
@@ -128,7 +128,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Field.php.html b/coverage/Writer/ODText/Element/Field.php.html
index 133db7dc46..3f4b82773d 100644
--- a/coverage/Writer/ODText/Element/Field.php.html
+++ b/coverage/Writer/ODText/Element/Field.php.html
@@ -260,7 +260,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Formula.php.html b/coverage/Writer/ODText/Element/Formula.php.html
index e1a6603cbf..bf4de58bb8 100644
--- a/coverage/Writer/ODText/Element/Formula.php.html
+++ b/coverage/Writer/ODText/Element/Formula.php.html
@@ -214,7 +214,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Image.php.html b/coverage/Writer/ODText/Element/Image.php.html
index a85507224f..1560720b1a 100644
--- a/coverage/Writer/ODText/Element/Image.php.html
+++ b/coverage/Writer/ODText/Element/Image.php.html
@@ -215,7 +215,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Link.php.html b/coverage/Writer/ODText/Element/Link.php.html
index ec1c17ca45..a028ce3414 100644
--- a/coverage/Writer/ODText/Element/Link.php.html
+++ b/coverage/Writer/ODText/Element/Link.php.html
@@ -192,7 +192,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/ListItemRun.php.html b/coverage/Writer/ODText/Element/ListItemRun.php.html
index 516faef348..85e3397f6a 100644
--- a/coverage/Writer/ODText/Element/ListItemRun.php.html
+++ b/coverage/Writer/ODText/Element/ListItemRun.php.html
@@ -196,7 +196,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/PageBreak.php.html b/coverage/Writer/ODText/Element/PageBreak.php.html
index 2a42bfbbf4..69d33c751a 100644
--- a/coverage/Writer/ODText/Element/PageBreak.php.html
+++ b/coverage/Writer/ODText/Element/PageBreak.php.html
@@ -176,7 +176,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Table.php.html b/coverage/Writer/ODText/Element/Table.php.html
index a4455f5558..0ab668659e 100644
--- a/coverage/Writer/ODText/Element/Table.php.html
+++ b/coverage/Writer/ODText/Element/Table.php.html
@@ -276,7 +276,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Text.php.html b/coverage/Writer/ODText/Element/Text.php.html
index 191c4b8840..d623e1ef8e 100644
--- a/coverage/Writer/ODText/Element/Text.php.html
+++ b/coverage/Writer/ODText/Element/Text.php.html
@@ -314,7 +314,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/TextBreak.php.html b/coverage/Writer/ODText/Element/TextBreak.php.html
index 40488361e8..2f6445bb1f 100644
--- a/coverage/Writer/ODText/Element/TextBreak.php.html
+++ b/coverage/Writer/ODText/Element/TextBreak.php.html
@@ -178,7 +178,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/TextRun.php.html b/coverage/Writer/ODText/Element/TextRun.php.html
index c4bdc68585..5cd28fc27f 100644
--- a/coverage/Writer/ODText/Element/TextRun.php.html
+++ b/coverage/Writer/ODText/Element/TextRun.php.html
@@ -188,7 +188,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/Title.php.html b/coverage/Writer/ODText/Element/Title.php.html
index 72f0b152d0..e120d366ad 100644
--- a/coverage/Writer/ODText/Element/Title.php.html
+++ b/coverage/Writer/ODText/Element/Title.php.html
@@ -241,7 +241,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Element/dashboard.html b/coverage/Writer/ODText/Element/dashboard.html
index 58fed1bc99..ed2248bfc0 100644
--- a/coverage/Writer/ODText/Element/dashboard.html
+++ b/coverage/Writer/ODText/Element/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/coverage/Writer/ODText/Element/index.html b/coverage/Writer/ODText/Element/index.html
index bf2a51474a..bbd8dd610c 100644
--- a/coverage/Writer/ODText/Element/index.html
+++ b/coverage/Writer/ODText/Element/index.html
@@ -419,7 +419,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Part/AbstractPart.php.html b/coverage/Writer/ODText/Part/AbstractPart.php.html
index a1792f9ff7..ab7aaf7cf8 100644
--- a/coverage/Writer/ODText/Part/AbstractPart.php.html
+++ b/coverage/Writer/ODText/Part/AbstractPart.php.html
@@ -364,7 +364,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Part/Content.php.html b/coverage/Writer/ODText/Part/Content.php.html
index c01605a89d..88958150e4 100644
--- a/coverage/Writer/ODText/Part/Content.php.html
+++ b/coverage/Writer/ODText/Part/Content.php.html
@@ -735,7 +735,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Part/Manifest.php.html b/coverage/Writer/ODText/Part/Manifest.php.html
index 67af431c3e..f3a043d281 100644
--- a/coverage/Writer/ODText/Part/Manifest.php.html
+++ b/coverage/Writer/ODText/Part/Manifest.php.html
@@ -226,7 +226,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Part/Meta.php.html b/coverage/Writer/ODText/Part/Meta.php.html
index f7c74609a6..f7d4a89e7a 100644
--- a/coverage/Writer/ODText/Part/Meta.php.html
+++ b/coverage/Writer/ODText/Part/Meta.php.html
@@ -266,7 +266,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Part/Mimetype.php.html b/coverage/Writer/ODText/Part/Mimetype.php.html
index 2221e7a903..da6f043214 100644
--- a/coverage/Writer/ODText/Part/Mimetype.php.html
+++ b/coverage/Writer/ODText/Part/Mimetype.php.html
@@ -174,7 +174,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Part/Styles.php.html b/coverage/Writer/ODText/Part/Styles.php.html
index 87d1fc7c7d..834315286c 100644
--- a/coverage/Writer/ODText/Part/Styles.php.html
+++ b/coverage/Writer/ODText/Part/Styles.php.html
@@ -569,7 +569,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Part/dashboard.html b/coverage/Writer/ODText/Part/dashboard.html
index 2b8c0daf15..b2699dd7b2 100644
--- a/coverage/Writer/ODText/Part/dashboard.html
+++ b/coverage/Writer/ODText/Part/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/coverage/Writer/ODText/Part/index.html b/coverage/Writer/ODText/Part/index.html
index 059ae78f63..054824e027 100644
--- a/coverage/Writer/ODText/Part/index.html
+++ b/coverage/Writer/ODText/Part/index.html
@@ -253,7 +253,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/AbstractStyle.php.html b/coverage/Writer/ODText/Style/AbstractStyle.php.html
index 3eb8d7db79..fcb6b4055c 100644
--- a/coverage/Writer/ODText/Style/AbstractStyle.php.html
+++ b/coverage/Writer/ODText/Style/AbstractStyle.php.html
@@ -117,7 +117,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/Font.php.html b/coverage/Writer/ODText/Style/Font.php.html
index 832f879236..306b538e56 100644
--- a/coverage/Writer/ODText/Style/Font.php.html
+++ b/coverage/Writer/ODText/Style/Font.php.html
@@ -249,7 +249,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/Image.php.html b/coverage/Writer/ODText/Style/Image.php.html
index b8ffb6ff9a..d0419488b4 100644
--- a/coverage/Writer/ODText/Style/Image.php.html
+++ b/coverage/Writer/ODText/Style/Image.php.html
@@ -189,7 +189,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/Numbering.php.html b/coverage/Writer/ODText/Style/Numbering.php.html
index c60ec63067..50d55da751 100644
--- a/coverage/Writer/ODText/Style/Numbering.php.html
+++ b/coverage/Writer/ODText/Style/Numbering.php.html
@@ -226,7 +226,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/Paragraph.php.html b/coverage/Writer/ODText/Style/Paragraph.php.html
index a689708c87..1784a88d26 100644
--- a/coverage/Writer/ODText/Style/Paragraph.php.html
+++ b/coverage/Writer/ODText/Style/Paragraph.php.html
@@ -318,7 +318,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/Section.php.html b/coverage/Writer/ODText/Style/Section.php.html
index 7dd6574dbd..09380f3554 100644
--- a/coverage/Writer/ODText/Style/Section.php.html
+++ b/coverage/Writer/ODText/Style/Section.php.html
@@ -191,7 +191,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/Table.php.html b/coverage/Writer/ODText/Style/Table.php.html
index 6cad061774..bdab08d918 100644
--- a/coverage/Writer/ODText/Style/Table.php.html
+++ b/coverage/Writer/ODText/Style/Table.php.html
@@ -204,7 +204,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/Style/dashboard.html b/coverage/Writer/ODText/Style/dashboard.html
index a2446d0387..0e34578d33 100644
--- a/coverage/Writer/ODText/Style/dashboard.html
+++ b/coverage/Writer/ODText/Style/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/coverage/Writer/ODText/Style/index.html b/coverage/Writer/ODText/Style/index.html
index f11e7a3cfb..12eb417b88 100644
--- a/coverage/Writer/ODText/Style/index.html
+++ b/coverage/Writer/ODText/Style/index.html
@@ -266,7 +266,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/ODText/dashboard.html b/coverage/Writer/ODText/dashboard.html
index 417a3dc148..de29d5c16f 100644
--- a/coverage/Writer/ODText/dashboard.html
+++ b/coverage/Writer/ODText/dashboard.html
@@ -137,7 +137,7 @@ Project Risks
diff --git a/coverage/Writer/ODText/index.html b/coverage/Writer/ODText/index.html
index 74b3321d0b..aad0650e87 100644
--- a/coverage/Writer/ODText/index.html
+++ b/coverage/Writer/ODText/index.html
@@ -168,7 +168,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/PDF.php.html b/coverage/Writer/PDF.php.html
index e926f5a570..67b2f223ce 100644
--- a/coverage/Writer/PDF.php.html
+++ b/coverage/Writer/PDF.php.html
@@ -291,7 +291,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/PDF/AbstractRenderer.php.html b/coverage/Writer/PDF/AbstractRenderer.php.html
index ad51b8737e..ca7f11e765 100644
--- a/coverage/Writer/PDF/AbstractRenderer.php.html
+++ b/coverage/Writer/PDF/AbstractRenderer.php.html
@@ -525,7 +525,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/PDF/DomPDF.php.html b/coverage/Writer/PDF/DomPDF.php.html
index dfd18b9af4..33bfcbe5f7 100644
--- a/coverage/Writer/PDF/DomPDF.php.html
+++ b/coverage/Writer/PDF/DomPDF.php.html
@@ -237,7 +237,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/PDF/MPDF.php.html b/coverage/Writer/PDF/MPDF.php.html
index 654027d3f1..8d983b0e44 100644
--- a/coverage/Writer/PDF/MPDF.php.html
+++ b/coverage/Writer/PDF/MPDF.php.html
@@ -318,7 +318,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/PDF/TCPDF.php.html b/coverage/Writer/PDF/TCPDF.php.html
index d377ea3dff..8ef8c221d1 100644
--- a/coverage/Writer/PDF/TCPDF.php.html
+++ b/coverage/Writer/PDF/TCPDF.php.html
@@ -307,7 +307,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/PDF/dashboard.html b/coverage/Writer/PDF/dashboard.html
index b7192972b4..8cfdee5c62 100644
--- a/coverage/Writer/PDF/dashboard.html
+++ b/coverage/Writer/PDF/dashboard.html
@@ -143,7 +143,7 @@ Project Risks
diff --git a/coverage/Writer/PDF/index.html b/coverage/Writer/PDF/index.html
index 9de049541b..7e578815b1 100644
--- a/coverage/Writer/PDF/index.html
+++ b/coverage/Writer/PDF/index.html
@@ -196,7 +196,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF.php.html b/coverage/Writer/RTF.php.html
index f8c0c2a987..d2891c8096 100644
--- a/coverage/Writer/RTF.php.html
+++ b/coverage/Writer/RTF.php.html
@@ -392,7 +392,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/AbstractElement.php.html b/coverage/Writer/RTF/Element/AbstractElement.php.html
index 07f59e6512..951593e6b9 100644
--- a/coverage/Writer/RTF/Element/AbstractElement.php.html
+++ b/coverage/Writer/RTF/Element/AbstractElement.php.html
@@ -476,7 +476,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/Container.php.html b/coverage/Writer/RTF/Element/Container.php.html
index a0688c04cc..36083c910f 100644
--- a/coverage/Writer/RTF/Element/Container.php.html
+++ b/coverage/Writer/RTF/Element/Container.php.html
@@ -204,7 +204,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/Field.php.html b/coverage/Writer/RTF/Element/Field.php.html
index 80f9918f83..e839cf7ad0 100644
--- a/coverage/Writer/RTF/Element/Field.php.html
+++ b/coverage/Writer/RTF/Element/Field.php.html
@@ -321,7 +321,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/Image.php.html b/coverage/Writer/RTF/Element/Image.php.html
index 42e3e05238..94a7412f8b 100644
--- a/coverage/Writer/RTF/Element/Image.php.html
+++ b/coverage/Writer/RTF/Element/Image.php.html
@@ -197,7 +197,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/Link.php.html b/coverage/Writer/RTF/Element/Link.php.html
index e6cbed616f..8fd7cf3dd4 100644
--- a/coverage/Writer/RTF/Element/Link.php.html
+++ b/coverage/Writer/RTF/Element/Link.php.html
@@ -190,7 +190,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/ListItem.php.html b/coverage/Writer/RTF/Element/ListItem.php.html
index 6e7892d577..70e2fb349a 100644
--- a/coverage/Writer/RTF/Element/ListItem.php.html
+++ b/coverage/Writer/RTF/Element/ListItem.php.html
@@ -115,7 +115,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/PageBreak.php.html b/coverage/Writer/RTF/Element/PageBreak.php.html
index d65c6d9e4f..b4456fa688 100644
--- a/coverage/Writer/RTF/Element/PageBreak.php.html
+++ b/coverage/Writer/RTF/Element/PageBreak.php.html
@@ -176,7 +176,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/Table.php.html b/coverage/Writer/RTF/Element/Table.php.html
index 70369ed941..0933e677b5 100644
--- a/coverage/Writer/RTF/Element/Table.php.html
+++ b/coverage/Writer/RTF/Element/Table.php.html
@@ -536,7 +536,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/Text.php.html b/coverage/Writer/RTF/Element/Text.php.html
index ea7579431d..2331f2284f 100644
--- a/coverage/Writer/RTF/Element/Text.php.html
+++ b/coverage/Writer/RTF/Element/Text.php.html
@@ -193,7 +193,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/TextBreak.php.html b/coverage/Writer/RTF/Element/TextBreak.php.html
index 3b87953c5d..338835e793 100644
--- a/coverage/Writer/RTF/Element/TextBreak.php.html
+++ b/coverage/Writer/RTF/Element/TextBreak.php.html
@@ -180,7 +180,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/TextRun.php.html b/coverage/Writer/RTF/Element/TextRun.php.html
index 298b7040af..3682845a2e 100644
--- a/coverage/Writer/RTF/Element/TextRun.php.html
+++ b/coverage/Writer/RTF/Element/TextRun.php.html
@@ -186,7 +186,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/Title.php.html b/coverage/Writer/RTF/Element/Title.php.html
index d6a7b89548..7b717a8564 100644
--- a/coverage/Writer/RTF/Element/Title.php.html
+++ b/coverage/Writer/RTF/Element/Title.php.html
@@ -254,7 +254,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Element/dashboard.html b/coverage/Writer/RTF/Element/dashboard.html
index 29ccd04feb..0736c41142 100644
--- a/coverage/Writer/RTF/Element/dashboard.html
+++ b/coverage/Writer/RTF/Element/dashboard.html
@@ -142,7 +142,7 @@ Project Risks
diff --git a/coverage/Writer/RTF/Element/index.html b/coverage/Writer/RTF/Element/index.html
index 64a0f6917f..1d7226a617 100644
--- a/coverage/Writer/RTF/Element/index.html
+++ b/coverage/Writer/RTF/Element/index.html
@@ -406,7 +406,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Part/AbstractPart.php.html b/coverage/Writer/RTF/Part/AbstractPart.php.html
index 1f768c5c2f..20ca04acd9 100644
--- a/coverage/Writer/RTF/Part/AbstractPart.php.html
+++ b/coverage/Writer/RTF/Part/AbstractPart.php.html
@@ -264,7 +264,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Part/Document.php.html b/coverage/Writer/RTF/Part/Document.php.html
index 9e6e1a0fdb..1a9a7fd4b7 100644
--- a/coverage/Writer/RTF/Part/Document.php.html
+++ b/coverage/Writer/RTF/Part/Document.php.html
@@ -487,7 +487,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Part/Header.php.html b/coverage/Writer/RTF/Part/Header.php.html
index e1e735d16e..6d45cb70d6 100644
--- a/coverage/Writer/RTF/Part/Header.php.html
+++ b/coverage/Writer/RTF/Part/Header.php.html
@@ -646,7 +646,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Part/dashboard.html b/coverage/Writer/RTF/Part/dashboard.html
index 83fa478984..1f20ec1a00 100644
--- a/coverage/Writer/RTF/Part/dashboard.html
+++ b/coverage/Writer/RTF/Part/dashboard.html
@@ -147,7 +147,7 @@ Project Risks
diff --git a/coverage/Writer/RTF/Part/index.html b/coverage/Writer/RTF/Part/index.html
index ba18380dcf..920f17e527 100644
--- a/coverage/Writer/RTF/Part/index.html
+++ b/coverage/Writer/RTF/Part/index.html
@@ -169,7 +169,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/AbstractStyle.php.html b/coverage/Writer/RTF/Style/AbstractStyle.php.html
index b3ba223321..1fbccaa6d0 100644
--- a/coverage/Writer/RTF/Style/AbstractStyle.php.html
+++ b/coverage/Writer/RTF/Style/AbstractStyle.php.html
@@ -347,7 +347,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/Border.php.html b/coverage/Writer/RTF/Style/Border.php.html
index 5b1aaa08d6..7e8eebea92 100644
--- a/coverage/Writer/RTF/Style/Border.php.html
+++ b/coverage/Writer/RTF/Style/Border.php.html
@@ -329,7 +329,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/Font.php.html b/coverage/Writer/RTF/Style/Font.php.html
index 91b3628185..84cd11aef3 100644
--- a/coverage/Writer/RTF/Style/Font.php.html
+++ b/coverage/Writer/RTF/Style/Font.php.html
@@ -272,7 +272,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/Indentation.php.html b/coverage/Writer/RTF/Style/Indentation.php.html
index 7187369911..98ef25766d 100644
--- a/coverage/Writer/RTF/Style/Indentation.php.html
+++ b/coverage/Writer/RTF/Style/Indentation.php.html
@@ -185,7 +185,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/Paragraph.php.html b/coverage/Writer/RTF/Style/Paragraph.php.html
index 058d54025c..c9921d3b4c 100644
--- a/coverage/Writer/RTF/Style/Paragraph.php.html
+++ b/coverage/Writer/RTF/Style/Paragraph.php.html
@@ -359,7 +359,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/Section.php.html b/coverage/Writer/RTF/Style/Section.php.html
index 37c3ea6b0e..6cdbc6af11 100644
--- a/coverage/Writer/RTF/Style/Section.php.html
+++ b/coverage/Writer/RTF/Style/Section.php.html
@@ -210,7 +210,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/Tab.php.html b/coverage/Writer/RTF/Style/Tab.php.html
index 0ef3b28ec8..8c885bd88c 100644
--- a/coverage/Writer/RTF/Style/Tab.php.html
+++ b/coverage/Writer/RTF/Style/Tab.php.html
@@ -189,7 +189,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/Style/dashboard.html b/coverage/Writer/RTF/Style/dashboard.html
index 0cc2f72fa9..3d2b73a088 100644
--- a/coverage/Writer/RTF/Style/dashboard.html
+++ b/coverage/Writer/RTF/Style/dashboard.html
@@ -150,7 +150,7 @@ Project Risks
diff --git a/coverage/Writer/RTF/Style/index.html b/coverage/Writer/RTF/Style/index.html
index ba342eafe1..83163ee110 100644
--- a/coverage/Writer/RTF/Style/index.html
+++ b/coverage/Writer/RTF/Style/index.html
@@ -281,7 +281,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/RTF/dashboard.html b/coverage/Writer/RTF/dashboard.html
index 670c4626a2..83bd01b506 100644
--- a/coverage/Writer/RTF/dashboard.html
+++ b/coverage/Writer/RTF/dashboard.html
@@ -162,7 +162,7 @@ Project Risks
diff --git a/coverage/Writer/RTF/index.html b/coverage/Writer/RTF/index.html
index e54250a6b8..3361061ac2 100644
--- a/coverage/Writer/RTF/index.html
+++ b/coverage/Writer/RTF/index.html
@@ -168,7 +168,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007.php.html b/coverage/Writer/Word2007.php.html
index 22a9f996b7..c0e11786bf 100644
--- a/coverage/Writer/Word2007.php.html
+++ b/coverage/Writer/Word2007.php.html
@@ -661,7 +661,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/AbstractElement.php.html b/coverage/Writer/Word2007/Element/AbstractElement.php.html
index 053e4d80ea..b1d7aacddd 100644
--- a/coverage/Writer/Word2007/Element/AbstractElement.php.html
+++ b/coverage/Writer/Word2007/Element/AbstractElement.php.html
@@ -672,7 +672,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Bookmark.php.html b/coverage/Writer/Word2007/Element/Bookmark.php.html
index 856148d9c5..e4cdebd1c3 100644
--- a/coverage/Writer/Word2007/Element/Bookmark.php.html
+++ b/coverage/Writer/Word2007/Element/Bookmark.php.html
@@ -189,7 +189,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Chart.php.html b/coverage/Writer/Word2007/Element/Chart.php.html
index e0324f8d50..89584caf50 100644
--- a/coverage/Writer/Word2007/Element/Chart.php.html
+++ b/coverage/Writer/Word2007/Element/Chart.php.html
@@ -216,7 +216,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/CheckBox.php.html b/coverage/Writer/Word2007/Element/CheckBox.php.html
index bf0dc7998c..87973b567a 100644
--- a/coverage/Writer/Word2007/Element/CheckBox.php.html
+++ b/coverage/Writer/Word2007/Element/CheckBox.php.html
@@ -230,7 +230,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Container.php.html b/coverage/Writer/Word2007/Element/Container.php.html
index 5b90640183..1011825bc4 100644
--- a/coverage/Writer/Word2007/Element/Container.php.html
+++ b/coverage/Writer/Word2007/Element/Container.php.html
@@ -255,7 +255,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Endnote.php.html b/coverage/Writer/Word2007/Element/Endnote.php.html
index 8421917249..36dc8b9ffc 100644
--- a/coverage/Writer/Word2007/Element/Endnote.php.html
+++ b/coverage/Writer/Word2007/Element/Endnote.php.html
@@ -121,7 +121,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Field.php.html b/coverage/Writer/Word2007/Element/Field.php.html
index f295d8c337..d33de514bd 100644
--- a/coverage/Writer/Word2007/Element/Field.php.html
+++ b/coverage/Writer/Word2007/Element/Field.php.html
@@ -582,7 +582,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Footnote.php.html b/coverage/Writer/Word2007/Element/Footnote.php.html
index cf27f99d6e..002f8a6b74 100644
--- a/coverage/Writer/Word2007/Element/Footnote.php.html
+++ b/coverage/Writer/Word2007/Element/Footnote.php.html
@@ -200,7 +200,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/FormField.php.html b/coverage/Writer/Word2007/Element/FormField.php.html
index 9c11562096..20f1c0075a 100644
--- a/coverage/Writer/Word2007/Element/FormField.php.html
+++ b/coverage/Writer/Word2007/Element/FormField.php.html
@@ -371,7 +371,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Formula.php.html b/coverage/Writer/Word2007/Element/Formula.php.html
index 26ec2debe9..afb5ee184d 100644
--- a/coverage/Writer/Word2007/Element/Formula.php.html
+++ b/coverage/Writer/Word2007/Element/Formula.php.html
@@ -190,7 +190,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Image.php.html b/coverage/Writer/Word2007/Element/Image.php.html
index ad6f541abd..5bb1e9b471 100644
--- a/coverage/Writer/Word2007/Element/Image.php.html
+++ b/coverage/Writer/Word2007/Element/Image.php.html
@@ -313,7 +313,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Line.php.html b/coverage/Writer/Word2007/Element/Line.php.html
index 9aec99f011..e6217d485e 100644
--- a/coverage/Writer/Word2007/Element/Line.php.html
+++ b/coverage/Writer/Word2007/Element/Line.php.html
@@ -228,7 +228,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Link.php.html b/coverage/Writer/Word2007/Element/Link.php.html
index 0d18ad6d46..6a0243aa44 100644
--- a/coverage/Writer/Word2007/Element/Link.php.html
+++ b/coverage/Writer/Word2007/Element/Link.php.html
@@ -202,7 +202,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/ListItem.php.html b/coverage/Writer/Word2007/Element/ListItem.php.html
index 8961b4909c..7c131cac0c 100644
--- a/coverage/Writer/Word2007/Element/ListItem.php.html
+++ b/coverage/Writer/Word2007/Element/ListItem.php.html
@@ -207,7 +207,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/ListItemRun.php.html b/coverage/Writer/Word2007/Element/ListItemRun.php.html
index 89461f32ea..7baec53ed1 100644
--- a/coverage/Writer/Word2007/Element/ListItemRun.php.html
+++ b/coverage/Writer/Word2007/Element/ListItemRun.php.html
@@ -293,7 +293,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/OLEObject.php.html b/coverage/Writer/Word2007/Element/OLEObject.php.html
index f9d99bb746..e53feff6b7 100644
--- a/coverage/Writer/Word2007/Element/OLEObject.php.html
+++ b/coverage/Writer/Word2007/Element/OLEObject.php.html
@@ -228,7 +228,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/PageBreak.php.html b/coverage/Writer/Word2007/Element/PageBreak.php.html
index 200bf51fd6..0ca55300df 100644
--- a/coverage/Writer/Word2007/Element/PageBreak.php.html
+++ b/coverage/Writer/Word2007/Element/PageBreak.php.html
@@ -184,7 +184,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/ParagraphAlignment.php.html b/coverage/Writer/Word2007/Element/ParagraphAlignment.php.html
index 43d909b125..08f3463dd1 100644
--- a/coverage/Writer/Word2007/Element/ParagraphAlignment.php.html
+++ b/coverage/Writer/Word2007/Element/ParagraphAlignment.php.html
@@ -244,7 +244,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/PreserveText.php.html b/coverage/Writer/Word2007/Element/PreserveText.php.html
index af0cbaa9ca..383a2e1999 100644
--- a/coverage/Writer/Word2007/Element/PreserveText.php.html
+++ b/coverage/Writer/Word2007/Element/PreserveText.php.html
@@ -231,7 +231,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/SDT.php.html b/coverage/Writer/Word2007/Element/SDT.php.html
index 6cbf3cd6fa..f27225dac2 100644
--- a/coverage/Writer/Word2007/Element/SDT.php.html
+++ b/coverage/Writer/Word2007/Element/SDT.php.html
@@ -359,7 +359,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Shape.php.html b/coverage/Writer/Word2007/Element/Shape.php.html
index 9d4d59122c..3fc5abd4b4 100644
--- a/coverage/Writer/Word2007/Element/Shape.php.html
+++ b/coverage/Writer/Word2007/Element/Shape.php.html
@@ -430,7 +430,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/TOC.php.html b/coverage/Writer/Word2007/Element/TOC.php.html
index c4e003ea8e..e9f97dd6dd 100644
--- a/coverage/Writer/Word2007/Element/TOC.php.html
+++ b/coverage/Writer/Word2007/Element/TOC.php.html
@@ -420,7 +420,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Table.php.html b/coverage/Writer/Word2007/Element/Table.php.html
index 4ccb5c124f..151c0878ce 100644
--- a/coverage/Writer/Word2007/Element/Table.php.html
+++ b/coverage/Writer/Word2007/Element/Table.php.html
@@ -346,7 +346,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/TableAlignment.php.html b/coverage/Writer/Word2007/Element/TableAlignment.php.html
index c18bf8bcc3..6f764e2530 100644
--- a/coverage/Writer/Word2007/Element/TableAlignment.php.html
+++ b/coverage/Writer/Word2007/Element/TableAlignment.php.html
@@ -244,7 +244,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Text.php.html b/coverage/Writer/Word2007/Element/Text.php.html
index eb4e3ecd06..c7dda7cd5c 100644
--- a/coverage/Writer/Word2007/Element/Text.php.html
+++ b/coverage/Writer/Word2007/Element/Text.php.html
@@ -288,7 +288,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/TextBox.php.html b/coverage/Writer/Word2007/Element/TextBox.php.html
index d0b04ee917..3449d61ea5 100644
--- a/coverage/Writer/Word2007/Element/TextBox.php.html
+++ b/coverage/Writer/Word2007/Element/TextBox.php.html
@@ -215,7 +215,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/TextBreak.php.html b/coverage/Writer/Word2007/Element/TextBreak.php.html
index 7517cfd6ec..dfd3913f4a 100644
--- a/coverage/Writer/Word2007/Element/TextBreak.php.html
+++ b/coverage/Writer/Word2007/Element/TextBreak.php.html
@@ -193,7 +193,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/TextRun.php.html b/coverage/Writer/Word2007/Element/TextRun.php.html
index 052d932286..7580035117 100644
--- a/coverage/Writer/Word2007/Element/TextRun.php.html
+++ b/coverage/Writer/Word2007/Element/TextRun.php.html
@@ -182,7 +182,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/Title.php.html b/coverage/Writer/Word2007/Element/Title.php.html
index b0049494d8..686bd4fc8b 100644
--- a/coverage/Writer/Word2007/Element/Title.php.html
+++ b/coverage/Writer/Word2007/Element/Title.php.html
@@ -224,7 +224,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Element/dashboard.html b/coverage/Writer/Word2007/Element/dashboard.html
index 22164b1ba5..b84a263321 100644
--- a/coverage/Writer/Word2007/Element/dashboard.html
+++ b/coverage/Writer/Word2007/Element/dashboard.html
@@ -144,7 +144,7 @@ Project Risks
diff --git a/coverage/Writer/Word2007/Element/index.html b/coverage/Writer/Word2007/Element/index.html
index 0f395e3c6c..69ebbc8012 100644
--- a/coverage/Writer/Word2007/Element/index.html
+++ b/coverage/Writer/Word2007/Element/index.html
@@ -882,7 +882,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/AbstractPart.php.html b/coverage/Writer/Word2007/Part/AbstractPart.php.html
index 338d14c27f..b5e4e08087 100644
--- a/coverage/Writer/Word2007/Part/AbstractPart.php.html
+++ b/coverage/Writer/Word2007/Part/AbstractPart.php.html
@@ -324,7 +324,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Chart.php.html b/coverage/Writer/Word2007/Part/Chart.php.html
index 6d569ae4e4..33abdc87b4 100644
--- a/coverage/Writer/Word2007/Part/Chart.php.html
+++ b/coverage/Writer/Word2007/Part/Chart.php.html
@@ -757,7 +757,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Comments.php.html b/coverage/Writer/Word2007/Part/Comments.php.html
index 2344535d9d..96b82369b1 100644
--- a/coverage/Writer/Word2007/Part/Comments.php.html
+++ b/coverage/Writer/Word2007/Part/Comments.php.html
@@ -286,7 +286,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/ContentTypes.php.html b/coverage/Writer/Word2007/Part/ContentTypes.php.html
index 9844e4e208..a54990adfc 100644
--- a/coverage/Writer/Word2007/Part/ContentTypes.php.html
+++ b/coverage/Writer/Word2007/Part/ContentTypes.php.html
@@ -260,7 +260,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/DocPropsApp.php.html b/coverage/Writer/Word2007/Part/DocPropsApp.php.html
index 31491c1fb5..1924dd6c64 100644
--- a/coverage/Writer/Word2007/Part/DocPropsApp.php.html
+++ b/coverage/Writer/Word2007/Part/DocPropsApp.php.html
@@ -191,7 +191,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/DocPropsCore.php.html b/coverage/Writer/Word2007/Part/DocPropsCore.php.html
index 6d060b6866..b310b427c7 100644
--- a/coverage/Writer/Word2007/Part/DocPropsCore.php.html
+++ b/coverage/Writer/Word2007/Part/DocPropsCore.php.html
@@ -210,7 +210,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/DocPropsCustom.php.html b/coverage/Writer/Word2007/Part/DocPropsCustom.php.html
index a196a9a6e1..d95b05cf28 100644
--- a/coverage/Writer/Word2007/Part/DocPropsCustom.php.html
+++ b/coverage/Writer/Word2007/Part/DocPropsCustom.php.html
@@ -227,7 +227,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Document.php.html b/coverage/Writer/Word2007/Part/Document.php.html
index 4672a2ea01..e51ad2c494 100644
--- a/coverage/Writer/Word2007/Part/Document.php.html
+++ b/coverage/Writer/Word2007/Part/Document.php.html
@@ -339,7 +339,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Endnotes.php.html b/coverage/Writer/Word2007/Part/Endnotes.php.html
index eb81f30372..6e06642b7d 100644
--- a/coverage/Writer/Word2007/Part/Endnotes.php.html
+++ b/coverage/Writer/Word2007/Part/Endnotes.php.html
@@ -140,7 +140,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/FontTable.php.html b/coverage/Writer/Word2007/Part/FontTable.php.html
index da93e76a17..de25ca9b51 100644
--- a/coverage/Writer/Word2007/Part/FontTable.php.html
+++ b/coverage/Writer/Word2007/Part/FontTable.php.html
@@ -258,7 +258,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Footer.php.html b/coverage/Writer/Word2007/Part/Footer.php.html
index 712ec477a9..bed759dfd6 100644
--- a/coverage/Writer/Word2007/Part/Footer.php.html
+++ b/coverage/Writer/Word2007/Part/Footer.php.html
@@ -246,7 +246,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Footnotes.php.html b/coverage/Writer/Word2007/Part/Footnotes.php.html
index db497efedc..990f0437ec 100644
--- a/coverage/Writer/Word2007/Part/Footnotes.php.html
+++ b/coverage/Writer/Word2007/Part/Footnotes.php.html
@@ -360,7 +360,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Header.php.html b/coverage/Writer/Word2007/Part/Header.php.html
index 538c338e6f..7a695b9a5a 100644
--- a/coverage/Writer/Word2007/Part/Header.php.html
+++ b/coverage/Writer/Word2007/Part/Header.php.html
@@ -119,7 +119,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Numbering.php.html b/coverage/Writer/Word2007/Part/Numbering.php.html
index 675906cbd7..60ab857160 100644
--- a/coverage/Writer/Word2007/Part/Numbering.php.html
+++ b/coverage/Writer/Word2007/Part/Numbering.php.html
@@ -423,7 +423,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Rels.php.html b/coverage/Writer/Word2007/Part/Rels.php.html
index 234f19d6b8..f03fcf0f08 100644
--- a/coverage/Writer/Word2007/Part/Rels.php.html
+++ b/coverage/Writer/Word2007/Part/Rels.php.html
@@ -331,7 +331,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/RelsDocument.php.html b/coverage/Writer/Word2007/Part/RelsDocument.php.html
index ed855ee7a8..37698b0201 100644
--- a/coverage/Writer/Word2007/Part/RelsDocument.php.html
+++ b/coverage/Writer/Word2007/Part/RelsDocument.php.html
@@ -190,7 +190,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/RelsPart.php.html b/coverage/Writer/Word2007/Part/RelsPart.php.html
index 5cd1a1aa28..83c134c9af 100644
--- a/coverage/Writer/Word2007/Part/RelsPart.php.html
+++ b/coverage/Writer/Word2007/Part/RelsPart.php.html
@@ -222,7 +222,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Settings.php.html b/coverage/Writer/Word2007/Part/Settings.php.html
index 7586042475..f8be91abba 100644
--- a/coverage/Writer/Word2007/Part/Settings.php.html
+++ b/coverage/Writer/Word2007/Part/Settings.php.html
@@ -705,7 +705,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Styles.php.html b/coverage/Writer/Word2007/Part/Styles.php.html
index 5a5b6f6a5a..1bf9468398 100644
--- a/coverage/Writer/Word2007/Part/Styles.php.html
+++ b/coverage/Writer/Word2007/Part/Styles.php.html
@@ -508,7 +508,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/Theme.php.html b/coverage/Writer/Word2007/Part/Theme.php.html
index 504cfb2f2b..6934d0d9ef 100644
--- a/coverage/Writer/Word2007/Part/Theme.php.html
+++ b/coverage/Writer/Word2007/Part/Theme.php.html
@@ -717,7 +717,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/WebSettings.php.html b/coverage/Writer/Word2007/Part/WebSettings.php.html
index 8bd2ca3c7e..4c101f7ca7 100644
--- a/coverage/Writer/Word2007/Part/WebSettings.php.html
+++ b/coverage/Writer/Word2007/Part/WebSettings.php.html
@@ -191,7 +191,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Part/dashboard.html b/coverage/Writer/Word2007/Part/dashboard.html
index 4b28488eac..8f5f81a7bd 100644
--- a/coverage/Writer/Word2007/Part/dashboard.html
+++ b/coverage/Writer/Word2007/Part/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/coverage/Writer/Word2007/Part/index.html b/coverage/Writer/Word2007/Part/index.html
index e2eca383f6..8e568fb1cd 100644
--- a/coverage/Writer/Word2007/Part/index.html
+++ b/coverage/Writer/Word2007/Part/index.html
@@ -643,7 +643,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/AbstractStyle.php.html b/coverage/Writer/Word2007/Style/AbstractStyle.php.html
index c56c6b27e4..a199bf197d 100644
--- a/coverage/Writer/Word2007/Style/AbstractStyle.php.html
+++ b/coverage/Writer/Word2007/Style/AbstractStyle.php.html
@@ -441,7 +441,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Cell.php.html b/coverage/Writer/Word2007/Style/Cell.php.html
index b82c8ecccf..88fbb8b830 100644
--- a/coverage/Writer/Word2007/Style/Cell.php.html
+++ b/coverage/Writer/Word2007/Style/Cell.php.html
@@ -267,7 +267,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Extrusion.php.html b/coverage/Writer/Word2007/Style/Extrusion.php.html
index 0de08dc650..5bd5eced9e 100644
--- a/coverage/Writer/Word2007/Style/Extrusion.php.html
+++ b/coverage/Writer/Word2007/Style/Extrusion.php.html
@@ -184,7 +184,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Fill.php.html b/coverage/Writer/Word2007/Style/Fill.php.html
index 9c5effb2a8..6b9f670db1 100644
--- a/coverage/Writer/Word2007/Style/Fill.php.html
+++ b/coverage/Writer/Word2007/Style/Fill.php.html
@@ -181,7 +181,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Font.php.html b/coverage/Writer/Word2007/Style/Font.php.html
index c3622c3407..675ee7a141 100644
--- a/coverage/Writer/Word2007/Style/Font.php.html
+++ b/coverage/Writer/Word2007/Style/Font.php.html
@@ -360,7 +360,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Frame.php.html b/coverage/Writer/Word2007/Style/Frame.php.html
index 2a32fce05e..eaf1704622 100644
--- a/coverage/Writer/Word2007/Style/Frame.php.html
+++ b/coverage/Writer/Word2007/Style/Frame.php.html
@@ -375,7 +375,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Image.php.html b/coverage/Writer/Word2007/Style/Image.php.html
index c5fde56749..69d1c8a548 100644
--- a/coverage/Writer/Word2007/Style/Image.php.html
+++ b/coverage/Writer/Word2007/Style/Image.php.html
@@ -115,7 +115,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Indentation.php.html b/coverage/Writer/Word2007/Style/Indentation.php.html
index 367afd6903..62914891f5 100644
--- a/coverage/Writer/Word2007/Style/Indentation.php.html
+++ b/coverage/Writer/Word2007/Style/Indentation.php.html
@@ -191,7 +191,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Line.php.html b/coverage/Writer/Word2007/Style/Line.php.html
index f12fc691c0..7607620f15 100644
--- a/coverage/Writer/Word2007/Style/Line.php.html
+++ b/coverage/Writer/Word2007/Style/Line.php.html
@@ -209,7 +209,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/LineNumbering.php.html b/coverage/Writer/Word2007/Style/LineNumbering.php.html
index d5e28140a6..ea597c4872 100644
--- a/coverage/Writer/Word2007/Style/LineNumbering.php.html
+++ b/coverage/Writer/Word2007/Style/LineNumbering.php.html
@@ -186,7 +186,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/MarginBorder.php.html b/coverage/Writer/Word2007/Style/MarginBorder.php.html
index 5c458445c7..a1d0c00058 100644
--- a/coverage/Writer/Word2007/Style/MarginBorder.php.html
+++ b/coverage/Writer/Word2007/Style/MarginBorder.php.html
@@ -399,7 +399,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Outline.php.html b/coverage/Writer/Word2007/Style/Outline.php.html
index dd9ee62b52..7f7875f0f7 100644
--- a/coverage/Writer/Word2007/Style/Outline.php.html
+++ b/coverage/Writer/Word2007/Style/Outline.php.html
@@ -189,7 +189,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Paragraph.php.html b/coverage/Writer/Word2007/Style/Paragraph.php.html
index f21c44d50a..23e838e497 100644
--- a/coverage/Writer/Word2007/Style/Paragraph.php.html
+++ b/coverage/Writer/Word2007/Style/Paragraph.php.html
@@ -461,7 +461,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Row.php.html b/coverage/Writer/Word2007/Style/Row.php.html
index 6615e84810..448e9c791f 100644
--- a/coverage/Writer/Word2007/Style/Row.php.html
+++ b/coverage/Writer/Word2007/Style/Row.php.html
@@ -228,7 +228,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Section.php.html b/coverage/Writer/Word2007/Style/Section.php.html
index 0249b3ca15..0f25b7aeb2 100644
--- a/coverage/Writer/Word2007/Style/Section.php.html
+++ b/coverage/Writer/Word2007/Style/Section.php.html
@@ -241,7 +241,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Shading.php.html b/coverage/Writer/Word2007/Style/Shading.php.html
index 6c802a11b6..fc11ac25bf 100644
--- a/coverage/Writer/Word2007/Style/Shading.php.html
+++ b/coverage/Writer/Word2007/Style/Shading.php.html
@@ -184,7 +184,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Shadow.php.html b/coverage/Writer/Word2007/Style/Shadow.php.html
index 2676d47e8e..e69c7b0ca3 100644
--- a/coverage/Writer/Word2007/Style/Shadow.php.html
+++ b/coverage/Writer/Word2007/Style/Shadow.php.html
@@ -184,7 +184,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Shape.php.html b/coverage/Writer/Word2007/Style/Shape.php.html
index c9520bfea0..d57cf57210 100644
--- a/coverage/Writer/Word2007/Style/Shape.php.html
+++ b/coverage/Writer/Word2007/Style/Shape.php.html
@@ -185,7 +185,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Spacing.php.html b/coverage/Writer/Word2007/Style/Spacing.php.html
index 1fda9f422b..3c3b3c6373 100644
--- a/coverage/Writer/Word2007/Style/Spacing.php.html
+++ b/coverage/Writer/Word2007/Style/Spacing.php.html
@@ -197,7 +197,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Tab.php.html b/coverage/Writer/Word2007/Style/Tab.php.html
index 59491abdfa..bf1209f56a 100644
--- a/coverage/Writer/Word2007/Style/Tab.php.html
+++ b/coverage/Writer/Word2007/Style/Tab.php.html
@@ -184,7 +184,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/Table.php.html b/coverage/Writer/Word2007/Style/Table.php.html
index 9c0df5ce9e..61a0a2cd05 100644
--- a/coverage/Writer/Word2007/Style/Table.php.html
+++ b/coverage/Writer/Word2007/Style/Table.php.html
@@ -555,7 +555,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/TablePosition.php.html b/coverage/Writer/Word2007/Style/TablePosition.php.html
index 8889495849..7526e542a3 100644
--- a/coverage/Writer/Word2007/Style/TablePosition.php.html
+++ b/coverage/Writer/Word2007/Style/TablePosition.php.html
@@ -205,7 +205,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/TextBox.php.html b/coverage/Writer/Word2007/Style/TextBox.php.html
index 60033c54e1..c41abdbb21 100644
--- a/coverage/Writer/Word2007/Style/TextBox.php.html
+++ b/coverage/Writer/Word2007/Style/TextBox.php.html
@@ -221,7 +221,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/Style/dashboard.html b/coverage/Writer/Word2007/Style/dashboard.html
index 49f1e19c5c..45a10b0d03 100644
--- a/coverage/Writer/Word2007/Style/dashboard.html
+++ b/coverage/Writer/Word2007/Style/dashboard.html
@@ -138,7 +138,7 @@ Project Risks
diff --git a/coverage/Writer/Word2007/Style/index.html b/coverage/Writer/Word2007/Style/index.html
index f62cc0dcdd..ee95e802a0 100644
--- a/coverage/Writer/Word2007/Style/index.html
+++ b/coverage/Writer/Word2007/Style/index.html
@@ -714,7 +714,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/Word2007/dashboard.html b/coverage/Writer/Word2007/dashboard.html
index 8114fe3971..6ec048d617 100644
--- a/coverage/Writer/Word2007/dashboard.html
+++ b/coverage/Writer/Word2007/dashboard.html
@@ -143,7 +143,7 @@ Project Risks
diff --git a/coverage/Writer/Word2007/index.html b/coverage/Writer/Word2007/index.html
index 226c2b9eb0..91dbc0aeb9 100644
--- a/coverage/Writer/Word2007/index.html
+++ b/coverage/Writer/Word2007/index.html
@@ -168,7 +168,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/WriterInterface.php.html b/coverage/Writer/WriterInterface.php.html
index d940364826..08c5cce3a1 100644
--- a/coverage/Writer/WriterInterface.php.html
+++ b/coverage/Writer/WriterInterface.php.html
@@ -101,7 +101,7 @@
Legend
Covered by small (and larger) tests Covered by medium (and large) tests Covered by large tests (and tests of unknown size) Not covered Not coverable
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/Writer/dashboard.html b/coverage/Writer/dashboard.html
index d880e169b9..a174762084 100644
--- a/coverage/Writer/dashboard.html
+++ b/coverage/Writer/dashboard.html
@@ -175,7 +175,7 @@ Project Risks
diff --git a/coverage/Writer/index.html b/coverage/Writer/index.html
index bfba11f4d2..d0be7b75bb 100644
--- a/coverage/Writer/index.html
+++ b/coverage/Writer/index.html
@@ -404,7 +404,7 @@ Legend
High : 90% to 100%
- Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 10:41:19 UTC 2024.
+ Generated by php-code-coverage 9.2.30 using PHP 8.1.29 and PHPUnit 9.6.15 at Fri Sep 13 14:37:41 UTC 2024.
diff --git a/coverage/dashboard.html b/coverage/dashboard.html
index dabdf2c80b..0ca44938b4 100644
--- a/coverage/dashboard.html
+++ b/coverage/dashboard.html
@@ -128,7 +128,7 @@ Insufficient Coverage
getCommentRangeStart 0%
getCommentRangeEnd 0%
setConsecutiveHyphenLimit 0%
- setWidth 0%
+ setWidth 0%
setLegendPosition 0%
setNumId 0%
setChart 0%
@@ -244,7 +244,7 @@ Project Risks
@@ -331,7 +331,7 @@ Project Risks
chart.yAxis.axisLabel('Cyclomatic Complexity');
d3.select('#classComplexity svg')
- .datum(getComplexityData([[100,7," PhpOffice\\PhpWord\\Collection\\AbstractCollection<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Bookmarks<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Charts<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Comments<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Endnotes<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Footnotes<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Titles<\/a>"],[100,10," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties<\/a>"],[100,8," PhpOffice\\PhpWord\\ComplexType\\ProofState<\/a>"],[100,3," PhpOffice\\PhpWord\\ComplexType\\TblWidth<\/a>"],[100,15," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView<\/a>"],[100,28," PhpOffice\\PhpWord\\Element\\AbstractContainer<\/a>"],[92.5531914893617,63," PhpOffice\\PhpWord\\Element\\AbstractElement<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Bookmark<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Cell<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Chart<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\CheckBox<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Comment<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Endnote<\/a>"],[100,26," PhpOffice\\PhpWord\\Element\\Field<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\Footer<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Footnote<\/a>"],[100,11," PhpOffice\\PhpWord\\Element\\FormField<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Formula<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Header<\/a>"],[96.8944099378882,68," PhpOffice\\PhpWord\\Element\\Image<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Line<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\Link<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\ListItem<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\ListItemRun<\/a>"],[100,10," PhpOffice\\PhpWord\\Element\\OLEObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PageBreak<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\PreserveText<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Row<\/a>"],[100,11," PhpOffice\\PhpWord\\Element\\SDT<\/a>"],[100,21," PhpOffice\\PhpWord\\Element\\Section<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Shape<\/a>"],[100,17," PhpOffice\\PhpWord\\Element\\TOC<\/a>"],[100,14," PhpOffice\\PhpWord\\Element\\Table<\/a>"],[100,13," PhpOffice\\PhpWord\\Element\\Text<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\TextBox<\/a>"],[100,13," PhpOffice\\PhpWord\\Element\\TextBreak<\/a>"],[100,9," PhpOffice\\PhpWord\\Element\\TextRun<\/a>"],[100,10," PhpOffice\\PhpWord\\Element\\Title<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\TrackChange<\/a>"],[100,3," PhpOffice\\PhpWord\\Escaper\\AbstractEscaper<\/a>"],[100,1," PhpOffice\\PhpWord\\Escaper\\RegExp<\/a>"],[100,20," PhpOffice\\PhpWord\\Escaper\\Rtf<\/a>"],[100,2," PhpOffice\\PhpWord\\Escaper\\Xml<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CopyFileException<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CreateTemporaryFileException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\Exception<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\InvalidImageException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\InvalidObjectException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\InvalidStyleException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\UnsupportedImageTypeException<\/a>"],[100,18," PhpOffice\\PhpWord\\IOFactory<\/a>"],[100,25," PhpOffice\\PhpWord\\Media<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Compatibility<\/a>"],[100,54," PhpOffice\\PhpWord\\Metadata\\DocInfo<\/a>"],[100,14," PhpOffice\\PhpWord\\Metadata\\Protection<\/a>"],[100,48," PhpOffice\\PhpWord\\Metadata\\Settings<\/a>"],[100,27," PhpOffice\\PhpWord\\PhpWord<\/a>"],[100,11," PhpOffice\\PhpWord\\Reader\\AbstractReader<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\HTML<\/a>"],[90.04905395935529,203," PhpOffice\\PhpWord\\Reader\\MsDoc<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\ODText<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\ODText\\AbstractPart<\/a>"],[75.72815533980582,37," PhpOffice\\PhpWord\\Reader\\ODText\\Content<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\ODText\\Meta<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF<\/a>"],[98.05825242718447,35," PhpOffice\\PhpWord\\Reader\\RTF\\Document<\/a>"],[97.59036144578313,16," PhpOffice\\PhpWord\\Reader\\Word2007<\/a>"],[97.18614718614718,165," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\Comments<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsApp<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCore<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCustom<\/a>"],[100,21," PhpOffice\\PhpWord\\Reader\\Word2007\\Document<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\Word2007\\Endnotes<\/a>"],[95.23809523809523,10," PhpOffice\\PhpWord\\Reader\\Word2007\\Footnotes<\/a>"],[100,14," PhpOffice\\PhpWord\\Reader\\Word2007\\Numbering<\/a>"],[94.11764705882352,21," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings<\/a>"],[97.82608695652173,19," PhpOffice\\PhpWord\\Reader\\Word2007\\Styles<\/a>"],[100,46," PhpOffice\\PhpWord\\Settings<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\AbstractEnum<\/a>"],[100,58," PhpOffice\\PhpWord\\Shared\\Converter<\/a>"],[89.47368421052632,10," PhpOffice\\PhpWord\\Shared\\Css<\/a>"],[100,28," PhpOffice\\PhpWord\\Shared\\Drawing<\/a>"],[96.55172413793103,201," PhpOffice\\PhpWord\\Shared\\Html<\/a>"],[100,14," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder<\/a>"],[100,31," PhpOffice\\PhpWord\\Shared\\OLERead<\/a>"],[98.11320754716981,37," PhpOffice\\PhpWord\\Shared\\Text<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Validate<\/a>"],[95.91836734693877,25," PhpOffice\\PhpWord\\Shared\\XMLReader<\/a>"],[97.22222222222221,21," PhpOffice\\PhpWord\\Shared\\XMLWriter<\/a>"],[98.30508474576271,42," PhpOffice\\PhpWord\\Shared\\ZipArchive<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\Border<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\DocProtect<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\Jc<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\JcTable<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\LineSpacingRule<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\NumberFormat<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\TblWidth<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\TextAlignment<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\VerticalJc<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\Zoom<\/a>"],[100,19," PhpOffice\\PhpWord\\Style<\/a>"],[100,41," PhpOffice\\PhpWord\\Style\\AbstractStyle<\/a>"],[100,39," PhpOffice\\PhpWord\\Style\\Border<\/a>"],[94.73684210526315,19," PhpOffice\\PhpWord\\Style\\Cell<\/a>"],[94.64285714285714,35," PhpOffice\\PhpWord\\Style\\Chart<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Extrusion<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Fill<\/a>"],[100,61," PhpOffice\\PhpWord\\Style\\Font<\/a>"],[100,36," PhpOffice\\PhpWord\\Style\\Frame<\/a>"],[100,17," PhpOffice\\PhpWord\\Style\\Image<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Indentation<\/a>"],[96.29629629629629,20," PhpOffice\\PhpWord\\Style\\Language<\/a>"],[100,14," PhpOffice\\PhpWord\\Style\\Line<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\LineNumbering<\/a>"],[98.4251968503937,14," PhpOffice\\PhpWord\\Style\\ListItem<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Numbering<\/a>"],[100,27," PhpOffice\\PhpWord\\Style\\NumberingLevel<\/a>"],[100,16," PhpOffice\\PhpWord\\Style\\Outline<\/a>"],[100,6," PhpOffice\\PhpWord\\Style\\Paper<\/a>"],[100,58," PhpOffice\\PhpWord\\Style\\Paragraph<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Row<\/a>"],[100,35," PhpOffice\\PhpWord\\Style\\Section<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Shading<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Shadow<\/a>"],[100,15," PhpOffice\\PhpWord\\Style\\Shape<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Spacing<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\TOC<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Tab<\/a>"],[100,59," PhpOffice\\PhpWord\\Style\\Table<\/a>"],[100,21," PhpOffice\\PhpWord\\Style\\TablePosition<\/a>"],[100,19," PhpOffice\\PhpWord\\Style\\TextBox<\/a>"],[86.89138576779027,194," PhpOffice\\PhpWord\\TemplateProcessor<\/a>"],[100,45," PhpOffice\\PhpWord\\Writer\\AbstractWriter<\/a>"],[100,22," PhpOffice\\PhpWord\\Writer\\HTML<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Bookmark<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Container<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Endnote<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Footnote<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Image<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Link<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItem<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItemRun<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\PageBreak<\/a>"],[100,33," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table<\/a>"],[100,37," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextBreak<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextRun<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Title<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart<\/a>"],[97.14285714285714,9," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Body<\/a>"],[99.09909909909909,22," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head<\/a>"],[100,12," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Font<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Generic<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Image<\/a>"],[90,23," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Paragraph<\/a>"],[93.93939393939394,22," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Table<\/a>"],[94.44444444444444,11," PhpOffice\\PhpWord\\Writer\\ODText<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\AbstractElement<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Container<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Field<\/a>"],[90.47619047619048,3," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Formula<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Image<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Link<\/a>"],[92.85714285714286,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\ListItemRun<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\PageBreak<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table<\/a>"],[100,23," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextBreak<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextRun<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Title<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart<\/a>"],[100,49," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Manifest<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Meta<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Mimetype<\/a>"],[100,31," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\AbstractStyle<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Font<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Image<\/a>"],[96.875,3," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Numbering<\/a>"],[100,31," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Paragraph<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Section<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Table<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\PDF<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer<\/a>"],[92.3076923076923,3," PhpOffice\\PhpWord\\Writer\\PDF\\DomPDF<\/a>"],[96.7741935483871,11," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF<\/a>"],[97.2972972972973,7," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\RTF<\/a>"],[100,22," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Container<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Image<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Link<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\ListItem<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\PageBreak<\/a>"],[98.91304347826086,50," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Text<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextBreak<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextRun<\/a>"],[84.21052631578947,13," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Title<\/a>"],[80,4," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart<\/a>"],[97.19626168224299,36," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document<\/a>"],[93.05555555555556,25," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle<\/a>"],[85.71428571428571,10," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Indentation<\/a>"],[90.9090909090909,16," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph<\/a>"],[79.16666666666666,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Section<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Tab<\/a>"],[100,34," PhpOffice\\PhpWord\\Writer\\Word2007<\/a>"],[100,26," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Bookmark<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Chart<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\CheckBox<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Container<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Endnote<\/a>"],[88.38383838383838,47," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Footnote<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField<\/a>"],[90,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Formula<\/a>"],[100,11," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Line<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Link<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItem<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\OLEObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PageBreak<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PreserveText<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape<\/a>"],[100,18," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment<\/a>"],[100,11," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text<\/a>"],[96.55172413793103,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBox<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBreak<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextRun<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Title<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart<\/a>"],[100,46," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\ContentTypes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsApp<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCore<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCustom<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Endnotes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\FontTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footer<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Header<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering<\/a>"],[100,11," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsDocument<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsPart<\/a>"],[100,43," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings<\/a>"],[100,26," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\WebSettings<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Cell<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Extrusion<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Fill<\/a>"],[100,20," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font<\/a>"],[100,17," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Image<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Indentation<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Line<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\LineNumbering<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Outline<\/a>"],[100,22," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Row<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Section<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shading<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shadow<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shape<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Spacing<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Tab<\/a>"],[100,21," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TablePosition<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TextBox<\/a>"]], 'Class Complexity'))
+ .datum(getComplexityData([[100,7," PhpOffice\\PhpWord\\Collection\\AbstractCollection<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Bookmarks<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Charts<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Comments<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Endnotes<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Footnotes<\/a>"],[100,0," PhpOffice\\PhpWord\\Collection\\Titles<\/a>"],[100,10," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties<\/a>"],[100,8," PhpOffice\\PhpWord\\ComplexType\\ProofState<\/a>"],[100,3," PhpOffice\\PhpWord\\ComplexType\\TblWidth<\/a>"],[100,15," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView<\/a>"],[100,28," PhpOffice\\PhpWord\\Element\\AbstractContainer<\/a>"],[92.5531914893617,63," PhpOffice\\PhpWord\\Element\\AbstractElement<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Bookmark<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Cell<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Chart<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\CheckBox<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Comment<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Endnote<\/a>"],[100,26," PhpOffice\\PhpWord\\Element\\Field<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\Footer<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Footnote<\/a>"],[100,11," PhpOffice\\PhpWord\\Element\\FormField<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Formula<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Header<\/a>"],[96.8944099378882,68," PhpOffice\\PhpWord\\Element\\Image<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Line<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\Link<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\ListItem<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\ListItemRun<\/a>"],[100,10," PhpOffice\\PhpWord\\Element\\OLEObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PageBreak<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\PreserveText<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Row<\/a>"],[100,11," PhpOffice\\PhpWord\\Element\\SDT<\/a>"],[100,21," PhpOffice\\PhpWord\\Element\\Section<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Shape<\/a>"],[100,17," PhpOffice\\PhpWord\\Element\\TOC<\/a>"],[100,14," PhpOffice\\PhpWord\\Element\\Table<\/a>"],[100,13," PhpOffice\\PhpWord\\Element\\Text<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\TextBox<\/a>"],[100,13," PhpOffice\\PhpWord\\Element\\TextBreak<\/a>"],[100,9," PhpOffice\\PhpWord\\Element\\TextRun<\/a>"],[100,10," PhpOffice\\PhpWord\\Element\\Title<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\TrackChange<\/a>"],[100,3," PhpOffice\\PhpWord\\Escaper\\AbstractEscaper<\/a>"],[100,1," PhpOffice\\PhpWord\\Escaper\\RegExp<\/a>"],[100,20," PhpOffice\\PhpWord\\Escaper\\Rtf<\/a>"],[100,2," PhpOffice\\PhpWord\\Escaper\\Xml<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CopyFileException<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CreateTemporaryFileException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\Exception<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\InvalidImageException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\InvalidObjectException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\InvalidStyleException<\/a>"],[100,0," PhpOffice\\PhpWord\\Exception\\UnsupportedImageTypeException<\/a>"],[100,18," PhpOffice\\PhpWord\\IOFactory<\/a>"],[100,25," PhpOffice\\PhpWord\\Media<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Compatibility<\/a>"],[100,54," PhpOffice\\PhpWord\\Metadata\\DocInfo<\/a>"],[100,14," PhpOffice\\PhpWord\\Metadata\\Protection<\/a>"],[100,48," PhpOffice\\PhpWord\\Metadata\\Settings<\/a>"],[100,27," PhpOffice\\PhpWord\\PhpWord<\/a>"],[100,11," PhpOffice\\PhpWord\\Reader\\AbstractReader<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\HTML<\/a>"],[90.04905395935529,203," PhpOffice\\PhpWord\\Reader\\MsDoc<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\ODText<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\ODText\\AbstractPart<\/a>"],[75.72815533980582,37," PhpOffice\\PhpWord\\Reader\\ODText\\Content<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\ODText\\Meta<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF<\/a>"],[98.05825242718447,35," PhpOffice\\PhpWord\\Reader\\RTF\\Document<\/a>"],[97.59036144578313,16," PhpOffice\\PhpWord\\Reader\\Word2007<\/a>"],[97.18614718614718,165," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\Comments<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsApp<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCore<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCustom<\/a>"],[100,21," PhpOffice\\PhpWord\\Reader\\Word2007\\Document<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\Word2007\\Endnotes<\/a>"],[95.23809523809523,10," PhpOffice\\PhpWord\\Reader\\Word2007\\Footnotes<\/a>"],[100,14," PhpOffice\\PhpWord\\Reader\\Word2007\\Numbering<\/a>"],[94.11764705882352,21," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings<\/a>"],[97.82608695652173,19," PhpOffice\\PhpWord\\Reader\\Word2007\\Styles<\/a>"],[100,46," PhpOffice\\PhpWord\\Settings<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\AbstractEnum<\/a>"],[100,58," PhpOffice\\PhpWord\\Shared\\Converter<\/a>"],[89.47368421052632,10," PhpOffice\\PhpWord\\Shared\\Css<\/a>"],[100,28," PhpOffice\\PhpWord\\Shared\\Drawing<\/a>"],[96.55172413793103,201," PhpOffice\\PhpWord\\Shared\\Html<\/a>"],[100,14," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder<\/a>"],[100,31," PhpOffice\\PhpWord\\Shared\\OLERead<\/a>"],[98.11320754716981,37," PhpOffice\\PhpWord\\Shared\\Text<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Validate<\/a>"],[95.91836734693877,25," PhpOffice\\PhpWord\\Shared\\XMLReader<\/a>"],[97.22222222222221,21," PhpOffice\\PhpWord\\Shared\\XMLWriter<\/a>"],[98.30508474576271,42," PhpOffice\\PhpWord\\Shared\\ZipArchive<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\Border<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\DocProtect<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\Jc<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\JcTable<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\LineSpacingRule<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\NumberFormat<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\TblWidth<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\TextAlignment<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\VerticalJc<\/a>"],[100,0," PhpOffice\\PhpWord\\SimpleType\\Zoom<\/a>"],[100,19," PhpOffice\\PhpWord\\Style<\/a>"],[100,41," PhpOffice\\PhpWord\\Style\\AbstractStyle<\/a>"],[100,39," PhpOffice\\PhpWord\\Style\\Border<\/a>"],[95.45454545454545,21," PhpOffice\\PhpWord\\Style\\Cell<\/a>"],[94.64285714285714,35," PhpOffice\\PhpWord\\Style\\Chart<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Extrusion<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Fill<\/a>"],[100,61," PhpOffice\\PhpWord\\Style\\Font<\/a>"],[100,36," PhpOffice\\PhpWord\\Style\\Frame<\/a>"],[100,17," PhpOffice\\PhpWord\\Style\\Image<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Indentation<\/a>"],[96.29629629629629,20," PhpOffice\\PhpWord\\Style\\Language<\/a>"],[100,14," PhpOffice\\PhpWord\\Style\\Line<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\LineNumbering<\/a>"],[98.4251968503937,14," PhpOffice\\PhpWord\\Style\\ListItem<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Numbering<\/a>"],[100,27," PhpOffice\\PhpWord\\Style\\NumberingLevel<\/a>"],[100,16," PhpOffice\\PhpWord\\Style\\Outline<\/a>"],[100,6," PhpOffice\\PhpWord\\Style\\Paper<\/a>"],[100,58," PhpOffice\\PhpWord\\Style\\Paragraph<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Row<\/a>"],[100,35," PhpOffice\\PhpWord\\Style\\Section<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Shading<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Shadow<\/a>"],[100,15," PhpOffice\\PhpWord\\Style\\Shape<\/a>"],[100,9," PhpOffice\\PhpWord\\Style\\Spacing<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\TOC<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\Tab<\/a>"],[100,59," PhpOffice\\PhpWord\\Style\\Table<\/a>"],[100,21," PhpOffice\\PhpWord\\Style\\TablePosition<\/a>"],[100,19," PhpOffice\\PhpWord\\Style\\TextBox<\/a>"],[86.89138576779027,194," PhpOffice\\PhpWord\\TemplateProcessor<\/a>"],[100,45," PhpOffice\\PhpWord\\Writer\\AbstractWriter<\/a>"],[100,22," PhpOffice\\PhpWord\\Writer\\HTML<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Bookmark<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Container<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Endnote<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Footnote<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Image<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Link<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItem<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItemRun<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\PageBreak<\/a>"],[100,33," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table<\/a>"],[100,37," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextBreak<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextRun<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Title<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart<\/a>"],[97.14285714285714,9," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Body<\/a>"],[99.09909909909909,22," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head<\/a>"],[100,12," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Font<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Generic<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Image<\/a>"],[90,23," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Paragraph<\/a>"],[93.93939393939394,22," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Table<\/a>"],[94.44444444444444,11," PhpOffice\\PhpWord\\Writer\\ODText<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\AbstractElement<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Container<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Field<\/a>"],[90.47619047619048,3," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Formula<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Image<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Link<\/a>"],[92.85714285714286,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\ListItemRun<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\PageBreak<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table<\/a>"],[100,23," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextBreak<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextRun<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Title<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart<\/a>"],[100,49," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Manifest<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Meta<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Mimetype<\/a>"],[100,31," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\AbstractStyle<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Font<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Image<\/a>"],[96.875,3," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Numbering<\/a>"],[100,31," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Paragraph<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Section<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Table<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\PDF<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer<\/a>"],[92.3076923076923,3," PhpOffice\\PhpWord\\Writer\\PDF\\DomPDF<\/a>"],[96.7741935483871,11," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF<\/a>"],[97.2972972972973,7," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\RTF<\/a>"],[100,22," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Container<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Image<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Link<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\ListItem<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\PageBreak<\/a>"],[98.91304347826086,50," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Text<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextBreak<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextRun<\/a>"],[84.21052631578947,13," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Title<\/a>"],[80,4," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart<\/a>"],[97.19626168224299,36," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document<\/a>"],[93.05555555555556,25," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle<\/a>"],[85.71428571428571,10," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Indentation<\/a>"],[90.9090909090909,16," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph<\/a>"],[79.16666666666666,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Section<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Tab<\/a>"],[100,34," PhpOffice\\PhpWord\\Writer\\Word2007<\/a>"],[100,26," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Bookmark<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Chart<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\CheckBox<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Container<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Endnote<\/a>"],[88.38383838383838,47," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Footnote<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField<\/a>"],[90,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Formula<\/a>"],[100,11," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Line<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Link<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItem<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\OLEObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PageBreak<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PreserveText<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape<\/a>"],[100,18," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment<\/a>"],[100,11," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text<\/a>"],[96.55172413793103,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBox<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBreak<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextRun<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Title<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart<\/a>"],[100,46," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\ContentTypes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsApp<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCore<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCustom<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Endnotes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\FontTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footer<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Header<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering<\/a>"],[100,11," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsDocument<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsPart<\/a>"],[100,43," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings<\/a>"],[100,26," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\WebSettings<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Cell<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Extrusion<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Fill<\/a>"],[100,20," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font<\/a>"],[100,17," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Image<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Indentation<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Line<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\LineNumbering<\/a>"],[100,15," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Outline<\/a>"],[100,22," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Row<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Section<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shading<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shadow<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shape<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Spacing<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Tab<\/a>"],[100,21," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TablePosition<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TextBox<\/a>"]], 'Class Complexity'))
.transition()
.duration(500)
.call(chart);
@@ -355,7 +355,7 @@ Project Risks
chart.yAxis.axisLabel('Method Complexity');
d3.select('#methodComplexity svg')
- .datum(getComplexityData([[100,1," PhpOffice\\PhpWord\\Collection\\AbstractCollection::getItems<\/a>"],[100,2," PhpOffice\\PhpWord\\Collection\\AbstractCollection::getItem<\/a>"],[100,2," PhpOffice\\PhpWord\\Collection\\AbstractCollection::setItem<\/a>"],[100,1," PhpOffice\\PhpWord\\Collection\\AbstractCollection::addItem<\/a>"],[100,1," PhpOffice\\PhpWord\\Collection\\AbstractCollection::countItems<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getPos<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setPos<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getNumFmt<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setNumFmt<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getNumStart<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setNumStart<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getNumRestart<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setNumRestart<\/a>"],[100,3," PhpOffice\\PhpWord\\ComplexType\\ProofState::setSpelling<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\ProofState::getSpelling<\/a>"],[100,3," PhpOffice\\PhpWord\\ComplexType\\ProofState::setGrammar<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\ProofState::getGrammar<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TblWidth::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TblWidth::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TblWidth::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasMarkup<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setMarkup<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasComments<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setComments<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasInsDel<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setInsDel<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasFormatting<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setFormatting<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasInkAnnotations<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setInkAnnotations<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractContainer::__call<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\AbstractContainer::addElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractContainer::getElements<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\AbstractContainer::getElement<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\AbstractContainer::removeElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractContainer::countElements<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractContainer::checkValidity<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getPhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setPhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getSectionId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setDocPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getDocPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getDocPartId<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\AbstractElement::getMediaPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getElementIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setElementIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getElementId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setElementId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getNestedLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentsRangeStart<\/a>"],[0,2," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentRangeStart<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\AbstractElement::setCommentRangeStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentsRangeEnd<\/a>"],[0,2," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentRangeEnd<\/a>"],[90.9090909090909,6," PhpOffice\\PhpWord\\Element\\AbstractElement::setCommentRangeEnd<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getParent<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\AbstractElement::setParentContainer<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractElement::setMediaRelation<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\AbstractElement::setCollectionRelation<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::isInSection<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\AbstractElement::setNewStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setTrackChange<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getTrackChange<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setChangeInfo<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractElement::setEnumVal<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Bookmark::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Bookmark::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Cell::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Cell::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Cell::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::addSeries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::getSeries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\CheckBox::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\CheckBox::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\CheckBox::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::getInitials<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::setStartElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::getStartElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::setEndElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::getEndElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Endnote::__construct<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Field::setFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Field::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getType<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Field::setProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getProperties<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Field::setOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getOptions<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Field::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::__construct<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Footer::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::resetType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::firstPage<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::evenPage<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footnote::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footnote::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getDefault<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setDefault<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getEntries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setEntries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Formula::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Formula::setMath<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Formula::getMath<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Header::addWatermark<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getSource<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getSourceType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getMediaId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::isWatermark<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setIsWatermark<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageCreateFunction<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageFunction<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageQuality<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageExtension<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::isMemImage<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getTarget<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setTarget<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getMediaIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setMediaIndex<\/a>"],[100,10," PhpOffice\\PhpWord\\Element\\Image::getImageString<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\Element\\Image::getImageStringData<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\Image::checkImage<\/a>"],[83.33333333333334,7," PhpOffice\\PhpWord\\Element\\Image::setSourceType<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Image::getArchiveImageSize<\/a>"],[97.43589743589743,11," PhpOffice\\PhpWord\\Element\\Image::setFunctions<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Image::setProportionalSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Line::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Line::getStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Link::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getSource<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::isInternal<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\ListItem::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getTextObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getText<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\ListItemRun::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItemRun::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItemRun::getDepth<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\OLEObject::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getSource<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getIcon<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getImageRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::setImageRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PageBreak::__construct<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\PreserveText::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PreserveText::getFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PreserveText::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PreserveText::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::addCell<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::getCells<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getListItems<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setListItems<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getTag<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setTag<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getAlias<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setAlias<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Section::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Section::setStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::addHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::addFooter<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getHeaders<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getFooters<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getFootnoteProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::setFootnoteProperties<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Section::hasDifferentFirstPage<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Section::addHeaderFooter<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::getStyle<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\TOC::__construct<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\TOC::getTitles<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getStyleTOC<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getStyleFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::setMaxDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getMaxDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::setMinDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getMinDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::addRow<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::addCell<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::getRows<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::setWidth<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Table::countColumns<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Table::findFirstDefinedCellWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::__construct<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Text::setFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::getFontStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Text::setParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBox::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBox::getStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextBreak::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextBreak::setFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBreak::getFontStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextBreak::setParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBreak::getParagraphStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\TextBreak::hasStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextRun::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextRun::getParagraphStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\TextRun::setParagraphStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextRun::getText<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Title::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getPageNumber<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\TrackChange::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TrackChange::getAuthor<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TrackChange::getDate<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TrackChange::getChangeType<\/a>"],[100,0," PhpOffice\\PhpWord\\Escaper\\AbstractEscaper::escapeSingleValue<\/a>"],[100,3," PhpOffice\\PhpWord\\Escaper\\AbstractEscaper::escape<\/a>"],[100,1," PhpOffice\\PhpWord\\Escaper\\RegExp::escapeSingleValue<\/a>"],[100,7," PhpOffice\\PhpWord\\Escaper\\Rtf::escapeAsciiCharacter<\/a>"],[100,1," PhpOffice\\PhpWord\\Escaper\\Rtf::escapeMultibyteCharacter<\/a>"],[100,12," PhpOffice\\PhpWord\\Escaper\\Rtf::escapeSingleValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Escaper\\Xml::escapeSingleValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CopyFileException::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CreateTemporaryFileException::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\IOFactory::createWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\IOFactory::createReader<\/a>"],[100,3," PhpOffice\\PhpWord\\IOFactory::createObject<\/a>"],[100,1," PhpOffice\\PhpWord\\IOFactory::load<\/a>"],[100,8," PhpOffice\\PhpWord\\IOFactory::extractVariables<\/a>"],[100,2," PhpOffice\\PhpWord\\IOFactory::isConcreteClass<\/a>"],[100,9," PhpOffice\\PhpWord\\Media::addElement<\/a>"],[100,5," PhpOffice\\PhpWord\\Media::countElements<\/a>"],[100,6," PhpOffice\\PhpWord\\Media::getElements<\/a>"],[100,4," PhpOffice\\PhpWord\\Media::getElementsByType<\/a>"],[100,1," PhpOffice\\PhpWord\\Media::resetElements<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Compatibility::getOoxmlVersion<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Compatibility::setOoxmlVersion<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCreator<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCreator<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getLastModifiedBy<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setLastModifiedBy<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCreated<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCreated<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getModified<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setModified<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getDescription<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setDescription<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getSubject<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setSubject<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getKeywords<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setKeywords<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCategory<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCategory<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCompany<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCompany<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getManager<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setManager<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCustomProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::isCustomPropertySet<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCustomPropertyValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCustomPropertyType<\/a>"],[100,8," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCustomProperty<\/a>"],[100,8," PhpOffice\\PhpWord\\Metadata\\DocInfo::convertProperty<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\DocInfo::convertPropertyType<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\DocInfo::setValue<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\DocInfo::getConversion<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Protection::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getEditing<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setEditing<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getPassword<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setPassword<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getSpinCount<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setSpinCount<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getAlgorithm<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setAlgorithm<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getSalt<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\Protection::setSalt<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::getDocumentProtection<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setDocumentProtection<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::getProofState<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setProofState<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasHideSpellingErrors<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setHideSpellingErrors<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasHideGrammaticalErrors<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setHideGrammaticalErrors<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasEvenAndOddHeaders<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setEvenAndOddHeaders<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getRevisionView<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setRevisionView<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasTrackRevisions<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setTrackRevisions<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasDoNotTrackMoves<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setDoNotTrackMoves<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasDoNotTrackFormatting<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setDoNotTrackFormatting<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getZoom<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setZoom<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasMirrorMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setMirrorMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getThemeFontLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setThemeFontLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasUpdateFields<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setUpdateFields<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getDecimalSymbol<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setDecimalSymbol<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasAutoHyphenation<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setAutoHyphenation<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getConsecutiveHyphenLimit<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setConsecutiveHyphenLimit<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getHyphenationZone<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setHyphenationZone<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasDoNotHyphenateCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setDoNotHyphenateCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasBookFoldPrinting<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setBookFoldPrinting<\/a>"],[100,3," PhpOffice\\PhpWord\\PhpWord::__construct<\/a>"],[100,6," PhpOffice\\PhpWord\\PhpWord::__call<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDocInfo<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getCompatibility<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getSettings<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getSections<\/a>"],[100,2," PhpOffice\\PhpWord\\PhpWord::getSection<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::addSection<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::sortSections<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDefaultFontName<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDefaultFontName<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDefaultFontSize<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDefaultFontSize<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDefaultParagraphStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\PhpWord::save<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::createSection<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDocumentProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDocumentProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::isReadDataOnly<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::setReadDataOnly<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::hasImageLoading<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::setImageLoading<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\AbstractReader::openFile<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\AbstractReader::canRead<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\HTML::load<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::load<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::loadOLE<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getNumInLcb<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\MsDoc::getArrayCP<\/a>"],[88.50574712643679,7," PhpOffice\\PhpWord\\Reader\\MsDoc::readFib<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\MsDoc::readBlockFibRgFcLcb<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::readFibContent<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordPlcfSed<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordSttbfFfn<\/a>"],[100,8," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordPlcfBtePapx<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordPlcfBteChpx<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::readSprm<\/a>"],[90.69767441860465,14," PhpOffice\\PhpWord\\Reader\\MsDoc::readSprmSpra<\/a>"],[66.57381615598887,119," PhpOffice\\PhpWord\\Reader\\MsDoc::readPrl<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::loadRecordHeader<\/a>"],[79.48717948717949,20," PhpOffice\\PhpWord\\Reader\\MsDoc::generatePhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt1d<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt2d<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt3d<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt4d<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText::load<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText::readPart<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText::readRelationships<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\ODText\\Content::read<\/a>"],[72.82608695652173,34," PhpOffice\\PhpWord\\Reader\\ODText\\Content::processNodes<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText\\Content::getSection<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\ODText\\Meta::read<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF::load<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\RTF\\Document::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markOpening<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markClosing<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markBackslash<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markNewline<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::flush<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\RTF\\Document::flushControl<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\RTF\\Document::flushText<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::setControl<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\RTF\\Document::pushText<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\RTF\\Document::parseControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readSkip<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readText<\/a>"],[97.67441860465115,5," PhpOffice\\PhpWord\\Reader\\Word2007::load<\/a>"],[88.88888888888889,2," PhpOffice\\PhpWord\\Reader\\Word2007::readPart<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007::readRelationships<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007::getRels<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setRels<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setImageLoading<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::hasImageLoading<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getCommentReferences<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setCommentReferences<\/a>"],[88.88888888888889,3," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setCommentReference<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getCommentReference<\/a>"],[98.80952380952381,31," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readParagraph<\/a>"],[95.23809523809523,27," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readFormField<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getHeadingDepth<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readRun<\/a>"],[93.84615384615384,27," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readRunChild<\/a>"],[100,12," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readParagraphStyle<\/a>"],[93.10344827586206,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readFontStyle<\/a>"],[96.29629629629629,7," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTableStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTablePosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTableIndent<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readCellStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::findPossibleElement<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::findPossibleAttribute<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readStyleDefs<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readStyleDef<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::isOn<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getMediaTarget<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getTargetMode<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\Comments::read<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCore::read<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCustom::read<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::read<\/a>"],[100,8," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readHeaderFooter<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readSectionStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readWPNode<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readWSectPrNode<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\Footnotes::read<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\Reader\\Word2007\\Footnotes::getElement<\/a>"],[100,11," PhpOffice\\PhpWord\\Reader\\Word2007\\Numbering::read<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\Numbering::readLevel<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setThemeFontLang<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setDocumentProtection<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setProofState<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setZoom<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setRevisionView<\/a>"],[0,2," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setConsecutiveHyphenLimit<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setHyphenationZone<\/a>"],[97.82608695652173,19," PhpOffice\\PhpWord\\Reader\\Word2007\\Styles::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::hasCompatibility<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setCompatibility<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getZipClass<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setZipClass<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setPdfRenderer<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getPdfRendererName<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setPdfRendererName<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getPdfRendererPath<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setPdfRendererOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getPdfRendererOptions<\/a>"],[100,4," PhpOffice\\PhpWord\\Settings::setPdfRendererPath<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getMeasurementUnit<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setMeasurementUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setTempDir<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::getTempDir<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::isOutputEscapingEnabled<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setOutputEscapingEnabled<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getDefaultFontName<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setDefaultFontName<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getDefaultFontSize<\/a>"],[100,4," PhpOffice\\PhpWord\\Settings::setDefaultFontSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setDefaultRtl<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::isDefaultRtl<\/a>"],[100,8," PhpOffice\\PhpWord\\Settings::loadConfig<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getDefaultPaper<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setDefaultPaper<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\AbstractEnum::getConstants<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\AbstractEnum::values<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\AbstractEnum::isValid<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\AbstractEnum::validate<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToInch<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::emuToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::picaToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::degreeToAngle<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::angleToDegree<\/a>"],[100,16," PhpOffice\\PhpWord\\Shared\\Converter::stringToRgb<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Converter::htmlToRgb<\/a>"],[100,9," PhpOffice\\PhpWord\\Shared\\Converter::cssToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::__construct<\/a>"],[85.71428571428571,6," PhpOffice\\PhpWord\\Shared\\Css::process<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::getStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::sanitize<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::pixelsToEmu<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::emuToPixels<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::pixelsToPoints<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::pointsToCentimeters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::pointsToPixels<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::pixelsToCentimeters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::centimetersToPixels<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::degreesToAngle<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::angleToDegrees<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::centimetersToTwips<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::twipsToCentimeters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::inchesToTwips<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::twipsToInches<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::twipsToPixels<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Drawing::htmlToRGB<\/a>"],[88.88888888888889,4," PhpOffice\\PhpWord\\Shared\\Html::addHtml<\/a>"],[97.72727272727273,17," PhpOffice\\PhpWord\\Shared\\Html::parseInlineStyle<\/a>"],[100,10," PhpOffice\\PhpWord\\Shared\\Html::parseNode<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Html::parseChildNodes<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseParagraph<\/a>"],[88.88888888888889,5," PhpOffice\\PhpWord\\Shared\\Html::parseInput<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseHeading<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Html::parseText<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseSpan<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::parseRow<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseCell<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::shouldAddTextRun<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Html::recursiveParseStylesInHierarchy<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::filterOutNonInheritedStyles<\/a>"],[100,9," PhpOffice\\PhpWord\\Shared\\Html::parseList<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::getListStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseListItem<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::parseStyle<\/a>"],[97.01492537313433,47," PhpOffice\\PhpWord\\Shared\\Html::parseStyleDeclarations<\/a>"],[100,25," PhpOffice\\PhpWord\\Shared\\Html::parseImage<\/a>"],[100,6," PhpOffice\\PhpWord\\Shared\\Html::mapBorderStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Html::mapBorderColor<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Html::mapAlign<\/a>"],[53.84615384615385,9," PhpOffice\\PhpWord\\Shared\\Html::mapAlignVertical<\/a>"],[50,7," PhpOffice\\PhpWord\\Shared\\Html::mapListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseLineBreak<\/a>"],[100,6," PhpOffice\\PhpWord\\Shared\\Html::parseLink<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseHorizRule<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::convertRgb<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::hashPassword<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::getAlgorithm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::getAlgorithmId<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::buildCombinedKey<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::int32<\/a>"],[100,10," PhpOffice\\PhpWord\\Shared\\OLERead::read<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\OLERead::getStream<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\OLERead::readData<\/a>"],[100,10," PhpOffice\\PhpWord\\Shared\\OLERead::readPropertySets<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\OLERead::getInt4d<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\Text::buildControlCharacters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Text::controlCharacterPHP2OOXML<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Text::numberFormat<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\Text::chr<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Shared\\Text::controlCharacterOOXML2PHP<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Text::isUTF8<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Text::toUTF8<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Text::toUnicode<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Text::utf8ToUnicode<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Text::unicodeToEntities<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Text::removeUnderscorePrefix<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Validate::validateCSSWhiteSpace<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Validate::validateCSSGenericFont<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\XMLReader::getDomFromZip<\/a>"],[71.42857142857143,3," PhpOffice\\PhpWord\\Shared\\XMLReader::getDomFromString<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\XMLReader::getElements<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\XMLReader::registerNamespace<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLReader::getElement<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\XMLReader::getAttribute<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLReader::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\XMLReader::countElements<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\XMLReader::elementExists<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\XMLWriter::__construct<\/a>"],[75,4," PhpOffice\\PhpWord\\Shared\\XMLWriter::__destruct<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLWriter::getData<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeElementBlock<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeElementIf<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeAttributeIf<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeAttribute<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::__call<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\ZipArchive::open<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\ZipArchive::close<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::extractTo<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::getFromName<\/a>"],[90.9090909090909,5," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipAddFile<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipAddFromString<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipExtractTo<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipGetFromName<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipGetNameIndex<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipLocateName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addLinkStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addNumberingStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Style::addTitleStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addTableStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::countStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::resetStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::setDefaultParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::getStyles<\/a>"],[100,2," PhpOffice\\PhpWord\\Style::getStyle<\/a>"],[100,6," PhpOffice\\PhpWord\\Style::setStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::isAuto<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setAuto<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::getChildStyleValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleByArray<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNonEmptyVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setBoolVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNumericVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIntVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setFloatVal<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\AbstractStyle::setEnumVal<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setObjectVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setPairedVal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::hasBorder<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getTextDirection<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setTextDirection<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVMerge<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setVMerge<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getWidth<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Cell::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::is3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::set3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::isShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getLegendPosition<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Chart::setLegendPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getDataLabelOptions<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Chart::setDataLabelOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLang<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Font::setLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Frame::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setHanging<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Language::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setBidirectional<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getBidirectional<\/a>"],[88.88888888888889,8," PhpOffice\\PhpWord\\Style\\Language::validateLocale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::isFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setRestart<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::setListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumId<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\ListItem::setNumId<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\ListItem::getListTypeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getLevels<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Numbering::setLevels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\NumberingLevel::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getSize<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paper::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getHeight<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Paragraph::setStyleValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getLineHeight<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Paragraph::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTabs<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setTabs<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPaperSize<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Section::setPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setSettingValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Section::setOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPortrait<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLandscape<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setPosition<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Table::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getFirstRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::hasMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getAlignment<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getLayout<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setLayout<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getTableOnlyProperty<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setTableOnlyProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::isBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMargin<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\TextBox::hasInnerMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderColor<\/a>"],[100,5," PhpOffice\\PhpWord\\TemplateProcessor::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::__destruct<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::zip<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::readPartWithRels<\/a>"],[72.72727272727273,5," PhpOffice\\PhpWord\\TemplateProcessor::transformSingleXml<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::transformXml<\/a>"],[85.71428571428571,2," PhpOffice\\PhpWord\\TemplateProcessor::applyXslStyleSheet<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::ensureMacroCompleted<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::ensureUtf8Encoded<\/a>"],[92.3076923076923,2," PhpOffice\\PhpWord\\TemplateProcessor::setComplexValue<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setComplexBlock<\/a>"],[100,8," PhpOffice\\PhpWord\\TemplateProcessor::setValue<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::setValues<\/a>"],[90.9090909090909,4," PhpOffice\\PhpWord\\TemplateProcessor::setCheckbox<\/a>"],[0,1," PhpOffice\\PhpWord\\TemplateProcessor::setChart<\/a>"],[77.27272727272727,8," PhpOffice\\PhpWord\\TemplateProcessor::getImageArgs<\/a>"],[90,6," PhpOffice\\PhpWord\\TemplateProcessor::chooseImageDimension<\/a>"],[55.172413793103445,8," PhpOffice\\PhpWord\\TemplateProcessor::fixImageWidthHeightRatio<\/a>"],[96.7741935483871,12," PhpOffice\\PhpWord\\TemplateProcessor::prepareImageAttrs<\/a>"],[96.15384615384616,4," PhpOffice\\PhpWord\\TemplateProcessor::addImageToRelations<\/a>"],[100,13," PhpOffice\\PhpWord\\TemplateProcessor::setImageValue<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::getVariableCount<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getVariables<\/a>"],[95.83333333333334,7," PhpOffice\\PhpWord\\TemplateProcessor::cloneRow<\/a>"],[30.303030303030305,11," PhpOffice\\PhpWord\\TemplateProcessor::deleteRow<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::cloneRowAndSetValues<\/a>"],[100,7," PhpOffice\\PhpWord\\TemplateProcessor::cloneBlock<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::replaceBlock<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::deleteBlock<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::setUpdateFields<\/a>"],[100,4," PhpOffice\\PhpWord\\TemplateProcessor::save<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::savePartWithRels<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::saveAs<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::fixBrokenMacros<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::setValueForPart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getVariablesForPart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getHeaderName<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::getMainPartName<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getSettingsPartName<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getFooterName<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getRelationsName<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\TemplateProcessor::getNextRelationsIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getDocumentContentTypesName<\/a>"],[92.85714285714286,3," PhpOffice\\PhpWord\\TemplateProcessor::findTableStart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::findTableEnd<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\TemplateProcessor::findRowStart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::findRowEnd<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::getSlice<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::indexClonedVariables<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::replaceCarriageReturns<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::replaceClonedVariables<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::replaceXmlBlock<\/a>"],[100,5," PhpOffice\\PhpWord\\TemplateProcessor::findContainingXmlBlockForMacro<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::findMacro<\/a>"],[100,4," PhpOffice\\PhpWord\\TemplateProcessor::findXmlBlockStart<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::findXmlBlockEnd<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::splitTextIntoTexts<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::textNeedsSplitting<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setMacroOpeningChars<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setMacroClosingChars<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setMacroChars<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getTempDocumentFilename<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getPhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::setPhpWord<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getWriterPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::isUseDiskCaching<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::setUseDiskCaching<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getDiskCachingDirectory<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getTempDir<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::setTempDir<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getTempFile<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::cleanupTempFile<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::clearTempDir<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getZipArchive<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::openFile<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::writeFile<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\AbstractWriter::addFilesToPackage<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\AbstractWriter::addFileToPackage<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\AbstractWriter::deleteDir<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::save<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML::getContent<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getEditCallback<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::setEditCallback<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::isPdf<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getNotes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::addNote<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getDefaultGenericFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::setDefaultGenericFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getDefaultWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::setDefaultWhiteSpace<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML::escapeHTML<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement::setWithoutP<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Bookmark::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Container::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Footnote::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Image::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Link::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItem::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItemRun::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\PageBreak::write<\/a>"],[100,20," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table::getTableStyle<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table::calculateCellRowSpan<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::setOpeningText<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::setClosingText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeOpening<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeClosing<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeTrackChangeOpening<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeTrackChangeClosing<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::getParagraphStyle<\/a>"],[100,12," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::processFontStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextRun::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Title::write<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart::setParentWriter<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart::getParentWriter<\/a>"],[94.11764705882352,4," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Body::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Body::writeNotes<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head::write<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head::writeStyles<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head::getFontFamily<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::setParentWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::getParentWriter<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::getStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::assembleCss<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::getValueIf<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Font::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Font::getFontFamily<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Generic::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Image::write<\/a>"],[90,23," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Paragraph::write<\/a>"],[93.93939393939394,22," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Table::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\ODText::__construct<\/a>"],[90.47619047619048,8," PhpOffice\\PhpWord\\Writer\\ODText::save<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Field::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Field::writeDefault<\/a>"],[90.47619047619048,3," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Formula::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Image::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Link::write<\/a>"],[92.85714285714286,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\ListItemRun::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\PageBreak::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table::writeColumns<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table::writeRow<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text::replacetabs<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text::writeChangeInsertion<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextBreak::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextRun::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Title::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Title::compareToFirstElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::writeCommonRootAttributes<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::writeFontFaces<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::addObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::setObjects<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::getObjects<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::writeAutoStyles<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::writeTextStyles<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getAutoStyles<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getContainerStyle<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getElementStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getElementStyleField<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getElementStyleTextRun<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::collectTrackedChanges<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Manifest::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Meta::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Meta::writeCustomProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Mimetype::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::write<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writeDefault<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writeNamed<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::cvttwiptostr<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writePageLayout<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writePageLayoutIndiv<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writeMaster<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Font::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Image::write<\/a>"],[96.875,3," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Numbering::write<\/a>"],[100,31," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Paragraph::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Section::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Table::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\PDF::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF::__call<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF::save<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF::getRenderer<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::getFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::setFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::getPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::setPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::getOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::setOrientation<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::prepareForSave<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::restoreStateAfterSave<\/a>"],[75,2," PhpOffice\\PhpWord\\Writer\\PDF\\DomPDF::createExternalWriterInstance<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\DomPDF::save<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::__construct<\/a>"],[80,2," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::createExternalWriterInstance<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::save<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::getMPdfClassName<\/a>"],[75,2," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF::createExternalWriterInstance<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF::prepareToWrite<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF::save<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::save<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getContent<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getFontTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getColorTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getLastParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::setLastParagraphStyle<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::__construct<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::getStyles<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeOpening<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeClosing<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeFontStyle<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Container::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writePage<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writeNumpages<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writeFilename<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writeDate<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Image::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Link::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\PageBreak::write<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeRowDef<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeRow<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeCell<\/a>"],[100,25," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeCellStyle<\/a>"],[93.33333333333333,6," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeCellBorder<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::getVMerge<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Text::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextRun::write<\/a>"],[60,6," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Title::getStyles<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Title::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::__construct<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::setParentWriter<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::getParentWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeInfo<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeFormatting<\/a>"],[85.71428571428571,5," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeTitlepg<\/a>"],[95.55555555555556,19," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeSections<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::getDateValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::getFontTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::getColorTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeCharset<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeDefaults<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeFontTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeColorTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeGenerator<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerFont<\/a>"],[75,3," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerBorderColor<\/a>"],[66.66666666666666,3," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerFontItems<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerTableItem<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::setParentWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::getParentWriter<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::getStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::getValueIf<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::write<\/a>"],[73.33333333333333,4," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::writeSide<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::setSizes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::setColors<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font::setNameIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font::setColorIndex<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Indentation::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::write<\/a>"],[50,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::writeIndentation<\/a>"],[50,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::writeTabs<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::setNestedLevel<\/a>"],[79.16666666666666,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Section::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Tab::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007::__construct<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007::save<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007::getContentTypes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007::getRelationships<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007::addHeaderFooterMedia<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007::addHeaderFooterContent<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007::addNotes<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007::addComments<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007::addChart<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007::registerContentTypes<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getXmlWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getElement<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::startElementP<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::endElementP<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeCommentRangeStart<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeCommentRangeEnd<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeFontStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeTextStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeText<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::setPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getPart<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Bookmark::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Chart::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\CheckBox::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Container::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Container::writeElement<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::writeDefault<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::writeMacrobutton<\/a>"],[100,16," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::buildPropertiesAndOptions<\/a>"],[73.07692307692307,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::writeRef<\/a>"],[47.05882352941176,10," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::convertRefOption<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Footnote::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::writeTextInput<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::writeCheckBox<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::writeDropDown<\/a>"],[90,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Formula::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image::writeImage<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image::writeWatermark<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Line::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Link::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItem::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::writeParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::writeParagraphProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::writeParagraphPropertiesNumbering<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\OLEObject::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PageBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment::getAttributes<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PreserveText::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writePlainText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writeComboBox<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writeDropDownList<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writeDate<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeArc<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeCurve<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writePolyline<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeRoundRect<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::getPoints<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::writeTitle<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::writeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::writeFieldMark<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::writeColumns<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::writeRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::writeCell<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment::getAttributes<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text::writeOpeningTrackChange<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text::writeClosingTrackChange<\/a>"],[96.55172413793103,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBox::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextRun::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Title::write<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::setParentWriter<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::getParentWriter<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::getXmlWriter<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::writeText<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::setElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeChart<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writePlotArea<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeSeries<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeSeriesItem<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeAxis<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeShape<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeAxisTitle<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments::writeComment<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments::setElements<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\ContentTypes::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\ContentTypes::writeContentType<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsApp::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCore::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCustom::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document::writeSection<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document::writeSectionSettings<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\FontTable::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footer::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footer::setElement<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes::setElements<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes::writeNote<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::writeLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::writeParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::writeFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::getRandomHexNumber<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::writeRels<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::writeMediaRel<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::writeRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsDocument::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsPart::setMedia<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::writeSetting<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::getSettings<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setOnOffValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setDocumentProtection<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setProofState<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setRevisionView<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setThemeFontLang<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setZoom<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setConsecutiveHyphenLimit<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setHyphenationZone<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setCompatibility<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeDefaultStyles<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeTableStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeColorScheme<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFontScheme<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatScheme<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatEffect<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatBackground<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\WebSettings::write<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::getXmlWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::getStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::convertTwip<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::writeChildStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::writeOnOf<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::assembleStyle<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Cell::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Cell::setWidth<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Extrusion::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Fill::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font::write<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font::writeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font::setIsInline<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::writeAlignment<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::writeWrap<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::getStyles<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Indentation::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Line::writeStroke<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\LineNumbering::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::writeSide<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setSizes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setAttributes<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Outline::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::write<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::writeStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::writeTabs<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::writeNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::setWithoutPPR<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::setIsInline<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Row::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Row::setHeight<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Section::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shading::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shadow::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shape::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Spacing::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Tab::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeLayout<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeMargin<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeBorder<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeTblWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeFirstRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::setWidth<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeIndent<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TablePosition::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TextBox::writeInnerMargin<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TextBox::writeBorder<\/a>"]], 'Method Complexity'))
+ .datum(getComplexityData([[100,1," PhpOffice\\PhpWord\\Collection\\AbstractCollection::getItems<\/a>"],[100,2," PhpOffice\\PhpWord\\Collection\\AbstractCollection::getItem<\/a>"],[100,2," PhpOffice\\PhpWord\\Collection\\AbstractCollection::setItem<\/a>"],[100,1," PhpOffice\\PhpWord\\Collection\\AbstractCollection::addItem<\/a>"],[100,1," PhpOffice\\PhpWord\\Collection\\AbstractCollection::countItems<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getPos<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setPos<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getNumFmt<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setNumFmt<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getNumStart<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setNumStart<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::getNumRestart<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::setNumRestart<\/a>"],[100,3," PhpOffice\\PhpWord\\ComplexType\\ProofState::setSpelling<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\ProofState::getSpelling<\/a>"],[100,3," PhpOffice\\PhpWord\\ComplexType\\ProofState::setGrammar<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\ProofState::getGrammar<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TblWidth::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TblWidth::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TblWidth::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasMarkup<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setMarkup<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasComments<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setComments<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasInsDel<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setInsDel<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasFormatting<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setFormatting<\/a>"],[100,1," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::hasInkAnnotations<\/a>"],[100,2," PhpOffice\\PhpWord\\ComplexType\\TrackChangesView::setInkAnnotations<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractContainer::__call<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\AbstractContainer::addElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractContainer::getElements<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\AbstractContainer::getElement<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\AbstractContainer::removeElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractContainer::countElements<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractContainer::checkValidity<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getPhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setPhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getSectionId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setDocPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getDocPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getDocPartId<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\AbstractElement::getMediaPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getElementIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setElementIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getElementId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setElementId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getNestedLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentsRangeStart<\/a>"],[0,2," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentRangeStart<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\AbstractElement::setCommentRangeStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentsRangeEnd<\/a>"],[0,2," PhpOffice\\PhpWord\\Element\\AbstractElement::getCommentRangeEnd<\/a>"],[90.9090909090909,6," PhpOffice\\PhpWord\\Element\\AbstractElement::setCommentRangeEnd<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getParent<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\AbstractElement::setParentContainer<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractElement::setMediaRelation<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\AbstractElement::setCollectionRelation<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::isInSection<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\AbstractElement::setNewStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setTrackChange<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::getTrackChange<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\AbstractElement::setChangeInfo<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\AbstractElement::setEnumVal<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Bookmark::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Bookmark::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Cell::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Cell::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Cell::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::addSeries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::getSeries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Chart::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\CheckBox::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\CheckBox::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\CheckBox::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::getInitials<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::setStartElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::getStartElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::setEndElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Comment::getEndElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Endnote::__construct<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Field::setFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Field::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getType<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Field::setProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getProperties<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Field::setOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getOptions<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Field::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Field::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::__construct<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Footer::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::resetType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::firstPage<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footer::evenPage<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footnote::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Footnote::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getDefault<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setDefault<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::getEntries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\FormField::setEntries<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Formula::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Formula::setMath<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Formula::getMath<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Header::addWatermark<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getSource<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getSourceType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getMediaId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::isWatermark<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setIsWatermark<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageCreateFunction<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageFunction<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageQuality<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getImageExtension<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::isMemImage<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getTarget<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setTarget<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::getMediaIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Image::setMediaIndex<\/a>"],[100,10," PhpOffice\\PhpWord\\Element\\Image::getImageString<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\Element\\Image::getImageStringData<\/a>"],[100,7," PhpOffice\\PhpWord\\Element\\Image::checkImage<\/a>"],[83.33333333333334,7," PhpOffice\\PhpWord\\Element\\Image::setSourceType<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Image::getArchiveImageSize<\/a>"],[97.43589743589743,11," PhpOffice\\PhpWord\\Element\\Image::setFunctions<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Image::setProportionalSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Line::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Line::getStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Link::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getSource<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Link::isInternal<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\ListItem::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getTextObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItem::getText<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\ListItemRun::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItemRun::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\ListItemRun::getDepth<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\OLEObject::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getSource<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getIcon<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::getImageRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\OLEObject::setImageRelationId<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PageBreak::__construct<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\PreserveText::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PreserveText::getFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PreserveText::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\PreserveText::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::addCell<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::getCells<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Row::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getListItems<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setListItems<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getTag<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setTag<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::getAlias<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\SDT::setAlias<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\Section::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Section::setStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::addHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::addFooter<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getHeaders<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getFooters<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::getFootnoteProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Section::setFootnoteProperties<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\Section::hasDifferentFirstPage<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Section::addHeaderFooter<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Shape::getStyle<\/a>"],[100,5," PhpOffice\\PhpWord\\Element\\TOC::__construct<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\TOC::getTitles<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getStyleTOC<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getStyleFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::setMaxDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getMaxDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::setMinDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TOC::getMinDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::addRow<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::addCell<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::getRows<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Table::setWidth<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\Table::countColumns<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Table::findFirstDefinedCellWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::__construct<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Text::setFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::getFontStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\Text::setParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::getParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Text::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBox::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBox::getStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextBreak::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextBreak::setFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBreak::getFontStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextBreak::setParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextBreak::getParagraphStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Element\\TextBreak::hasStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextRun::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TextRun::getParagraphStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\TextRun::setParagraphStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Element\\TextRun::getText<\/a>"],[100,6," PhpOffice\\PhpWord\\Element\\Title::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getDepth<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\Title::getPageNumber<\/a>"],[100,4," PhpOffice\\PhpWord\\Element\\TrackChange::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TrackChange::getAuthor<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TrackChange::getDate<\/a>"],[100,1," PhpOffice\\PhpWord\\Element\\TrackChange::getChangeType<\/a>"],[100,0," PhpOffice\\PhpWord\\Escaper\\AbstractEscaper::escapeSingleValue<\/a>"],[100,3," PhpOffice\\PhpWord\\Escaper\\AbstractEscaper::escape<\/a>"],[100,1," PhpOffice\\PhpWord\\Escaper\\RegExp::escapeSingleValue<\/a>"],[100,7," PhpOffice\\PhpWord\\Escaper\\Rtf::escapeAsciiCharacter<\/a>"],[100,1," PhpOffice\\PhpWord\\Escaper\\Rtf::escapeMultibyteCharacter<\/a>"],[100,12," PhpOffice\\PhpWord\\Escaper\\Rtf::escapeSingleValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Escaper\\Xml::escapeSingleValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CopyFileException::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Exception\\CreateTemporaryFileException::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\IOFactory::createWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\IOFactory::createReader<\/a>"],[100,3," PhpOffice\\PhpWord\\IOFactory::createObject<\/a>"],[100,1," PhpOffice\\PhpWord\\IOFactory::load<\/a>"],[100,8," PhpOffice\\PhpWord\\IOFactory::extractVariables<\/a>"],[100,2," PhpOffice\\PhpWord\\IOFactory::isConcreteClass<\/a>"],[100,9," PhpOffice\\PhpWord\\Media::addElement<\/a>"],[100,5," PhpOffice\\PhpWord\\Media::countElements<\/a>"],[100,6," PhpOffice\\PhpWord\\Media::getElements<\/a>"],[100,4," PhpOffice\\PhpWord\\Media::getElementsByType<\/a>"],[100,1," PhpOffice\\PhpWord\\Media::resetElements<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Compatibility::getOoxmlVersion<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Compatibility::setOoxmlVersion<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCreator<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCreator<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getLastModifiedBy<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setLastModifiedBy<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCreated<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCreated<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getModified<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setModified<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getDescription<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setDescription<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getSubject<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setSubject<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getKeywords<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setKeywords<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCategory<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCategory<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCompany<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCompany<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getManager<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::setManager<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCustomProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\DocInfo::isCustomPropertySet<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCustomPropertyValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\DocInfo::getCustomPropertyType<\/a>"],[100,8," PhpOffice\\PhpWord\\Metadata\\DocInfo::setCustomProperty<\/a>"],[100,8," PhpOffice\\PhpWord\\Metadata\\DocInfo::convertProperty<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\DocInfo::convertPropertyType<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\DocInfo::setValue<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\DocInfo::getConversion<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Protection::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getEditing<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setEditing<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getPassword<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setPassword<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getSpinCount<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setSpinCount<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getAlgorithm<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::setAlgorithm<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Protection::getSalt<\/a>"],[100,3," PhpOffice\\PhpWord\\Metadata\\Protection::setSalt<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::getDocumentProtection<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setDocumentProtection<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::getProofState<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setProofState<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasHideSpellingErrors<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setHideSpellingErrors<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasHideGrammaticalErrors<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setHideGrammaticalErrors<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasEvenAndOddHeaders<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setEvenAndOddHeaders<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getRevisionView<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setRevisionView<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasTrackRevisions<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setTrackRevisions<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasDoNotTrackMoves<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setDoNotTrackMoves<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasDoNotTrackFormatting<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setDoNotTrackFormatting<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getZoom<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setZoom<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasMirrorMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setMirrorMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getThemeFontLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setThemeFontLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasUpdateFields<\/a>"],[100,2," PhpOffice\\PhpWord\\Metadata\\Settings::setUpdateFields<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getDecimalSymbol<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setDecimalSymbol<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasAutoHyphenation<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setAutoHyphenation<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getConsecutiveHyphenLimit<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setConsecutiveHyphenLimit<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::getHyphenationZone<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setHyphenationZone<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasDoNotHyphenateCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setDoNotHyphenateCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::hasBookFoldPrinting<\/a>"],[100,1," PhpOffice\\PhpWord\\Metadata\\Settings::setBookFoldPrinting<\/a>"],[100,3," PhpOffice\\PhpWord\\PhpWord::__construct<\/a>"],[100,6," PhpOffice\\PhpWord\\PhpWord::__call<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDocInfo<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getCompatibility<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getSettings<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getSections<\/a>"],[100,2," PhpOffice\\PhpWord\\PhpWord::getSection<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::addSection<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::sortSections<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDefaultFontName<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDefaultFontName<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDefaultFontSize<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDefaultFontSize<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDefaultParagraphStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\PhpWord::save<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::createSection<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::getDocumentProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\PhpWord::setDocumentProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::isReadDataOnly<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::setReadDataOnly<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::hasImageLoading<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\AbstractReader::setImageLoading<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\AbstractReader::openFile<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\AbstractReader::canRead<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\HTML::load<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::load<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::loadOLE<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getNumInLcb<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\MsDoc::getArrayCP<\/a>"],[88.50574712643679,7," PhpOffice\\PhpWord\\Reader\\MsDoc::readFib<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\MsDoc::readBlockFibRgFcLcb<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::readFibContent<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordPlcfSed<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordSttbfFfn<\/a>"],[100,8," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordPlcfBtePapx<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\MsDoc::readRecordPlcfBteChpx<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::readSprm<\/a>"],[90.69767441860465,14," PhpOffice\\PhpWord\\Reader\\MsDoc::readSprmSpra<\/a>"],[66.57381615598887,119," PhpOffice\\PhpWord\\Reader\\MsDoc::readPrl<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::loadRecordHeader<\/a>"],[79.48717948717949,20," PhpOffice\\PhpWord\\Reader\\MsDoc::generatePhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt1d<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt2d<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt3d<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\MsDoc::getInt4d<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText::load<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText::readPart<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText::readRelationships<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\ODText\\Content::read<\/a>"],[72.82608695652173,34," PhpOffice\\PhpWord\\Reader\\ODText\\Content::processNodes<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\ODText\\Content::getSection<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\ODText\\Meta::read<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF::load<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\RTF\\Document::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markOpening<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markClosing<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markBackslash<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::markNewline<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::flush<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\RTF\\Document::flushControl<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\RTF\\Document::flushText<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::setControl<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\RTF\\Document::pushText<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\RTF\\Document::parseControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readSkip<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\RTF\\Document::readText<\/a>"],[97.67441860465115,5," PhpOffice\\PhpWord\\Reader\\Word2007::load<\/a>"],[88.88888888888889,2," PhpOffice\\PhpWord\\Reader\\Word2007::readPart<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007::readRelationships<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007::getRels<\/a>"],[100,0," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setRels<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setImageLoading<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::hasImageLoading<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getCommentReferences<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setCommentReferences<\/a>"],[88.88888888888889,3," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::setCommentReference<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getCommentReference<\/a>"],[98.80952380952381,31," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readParagraph<\/a>"],[95.23809523809523,27," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readFormField<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getHeadingDepth<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readRun<\/a>"],[93.84615384615384,27," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readRunChild<\/a>"],[100,12," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readParagraphStyle<\/a>"],[93.10344827586206,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readFontStyle<\/a>"],[96.29629629629629,7," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTableStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTablePosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readTableIndent<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readCellStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::findPossibleElement<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::findPossibleAttribute<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readStyleDefs<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::readStyleDef<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::isOn<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getMediaTarget<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\AbstractPart::getTargetMode<\/a>"],[100,5," PhpOffice\\PhpWord\\Reader\\Word2007\\Comments::read<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCore::read<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\DocPropsCustom::read<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::read<\/a>"],[100,8," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readHeaderFooter<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readSectionStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readWPNode<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\Document::readWSectPrNode<\/a>"],[100,7," PhpOffice\\PhpWord\\Reader\\Word2007\\Footnotes::read<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\Reader\\Word2007\\Footnotes::getElement<\/a>"],[100,11," PhpOffice\\PhpWord\\Reader\\Word2007\\Numbering::read<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\Numbering::readLevel<\/a>"],[100,6," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setThemeFontLang<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setDocumentProtection<\/a>"],[100,3," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setProofState<\/a>"],[100,4," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setZoom<\/a>"],[100,1," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setRevisionView<\/a>"],[0,2," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setConsecutiveHyphenLimit<\/a>"],[100,2," PhpOffice\\PhpWord\\Reader\\Word2007\\Settings::setHyphenationZone<\/a>"],[97.82608695652173,19," PhpOffice\\PhpWord\\Reader\\Word2007\\Styles::read<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::hasCompatibility<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setCompatibility<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getZipClass<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setZipClass<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setPdfRenderer<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getPdfRendererName<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setPdfRendererName<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getPdfRendererPath<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setPdfRendererOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getPdfRendererOptions<\/a>"],[100,4," PhpOffice\\PhpWord\\Settings::setPdfRendererPath<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getMeasurementUnit<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setMeasurementUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setTempDir<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::getTempDir<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::isOutputEscapingEnabled<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setOutputEscapingEnabled<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getDefaultFontName<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setDefaultFontName<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getDefaultFontSize<\/a>"],[100,4," PhpOffice\\PhpWord\\Settings::setDefaultFontSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::setDefaultRtl<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::isDefaultRtl<\/a>"],[100,8," PhpOffice\\PhpWord\\Settings::loadConfig<\/a>"],[100,1," PhpOffice\\PhpWord\\Settings::getDefaultPaper<\/a>"],[100,2," PhpOffice\\PhpWord\\Settings::setDefaultPaper<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\AbstractEnum::getConstants<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\AbstractEnum::values<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\AbstractEnum::isValid<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\AbstractEnum::validate<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToInch<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cmToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::inchToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pixelToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::pointToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::emuToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::picaToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::degreeToAngle<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::angleToDegree<\/a>"],[100,16," PhpOffice\\PhpWord\\Shared\\Converter::stringToRgb<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Converter::htmlToRgb<\/a>"],[100,9," PhpOffice\\PhpWord\\Shared\\Converter::cssToPoint<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToTwip<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToPixel<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToCm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Converter::cssToEmu<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::__construct<\/a>"],[85.71428571428571,6," PhpOffice\\PhpWord\\Shared\\Css::process<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::getStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::getStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Css::sanitize<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::pixelsToEmu<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::emuToPixels<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::pixelsToPoints<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::pointsToCentimeters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::pointsToPixels<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::pixelsToCentimeters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::centimetersToPixels<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Drawing::degreesToAngle<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::angleToDegrees<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::centimetersToTwips<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::twipsToCentimeters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::inchesToTwips<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::twipsToInches<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Drawing::twipsToPixels<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Drawing::htmlToRGB<\/a>"],[88.88888888888889,4," PhpOffice\\PhpWord\\Shared\\Html::addHtml<\/a>"],[97.72727272727273,17," PhpOffice\\PhpWord\\Shared\\Html::parseInlineStyle<\/a>"],[100,10," PhpOffice\\PhpWord\\Shared\\Html::parseNode<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Html::parseChildNodes<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseParagraph<\/a>"],[88.88888888888889,5," PhpOffice\\PhpWord\\Shared\\Html::parseInput<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseHeading<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Html::parseText<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseSpan<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::parseRow<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseCell<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::shouldAddTextRun<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Html::recursiveParseStylesInHierarchy<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::filterOutNonInheritedStyles<\/a>"],[100,9," PhpOffice\\PhpWord\\Shared\\Html::parseList<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::getListStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseListItem<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::parseStyle<\/a>"],[97.01492537313433,47," PhpOffice\\PhpWord\\Shared\\Html::parseStyleDeclarations<\/a>"],[100,25," PhpOffice\\PhpWord\\Shared\\Html::parseImage<\/a>"],[100,6," PhpOffice\\PhpWord\\Shared\\Html::mapBorderStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Html::mapBorderColor<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Html::mapAlign<\/a>"],[53.84615384615385,9," PhpOffice\\PhpWord\\Shared\\Html::mapAlignVertical<\/a>"],[50,7," PhpOffice\\PhpWord\\Shared\\Html::mapListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Html::parseLineBreak<\/a>"],[100,6," PhpOffice\\PhpWord\\Shared\\Html::parseLink<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Html::parseHorizRule<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Html::convertRgb<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::hashPassword<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::getAlgorithm<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::getAlgorithmId<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::buildCombinedKey<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Microsoft\\PasswordEncoder::int32<\/a>"],[100,10," PhpOffice\\PhpWord\\Shared\\OLERead::read<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\OLERead::getStream<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\OLERead::readData<\/a>"],[100,10," PhpOffice\\PhpWord\\Shared\\OLERead::readPropertySets<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\OLERead::getInt4d<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\Text::buildControlCharacters<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Text::controlCharacterPHP2OOXML<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Text::numberFormat<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\Text::chr<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Shared\\Text::controlCharacterOOXML2PHP<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Text::isUTF8<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Text::toUTF8<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\Text::toUnicode<\/a>"],[100,7," PhpOffice\\PhpWord\\Shared\\Text::utf8ToUnicode<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\Text::unicodeToEntities<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\Text::removeUnderscorePrefix<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Validate::validateCSSWhiteSpace<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\Validate::validateCSSGenericFont<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\XMLReader::getDomFromZip<\/a>"],[71.42857142857143,3," PhpOffice\\PhpWord\\Shared\\XMLReader::getDomFromString<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\XMLReader::getElements<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\XMLReader::registerNamespace<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLReader::getElement<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\XMLReader::getAttribute<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLReader::getValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\XMLReader::countElements<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\XMLReader::elementExists<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\XMLWriter::__construct<\/a>"],[75,4," PhpOffice\\PhpWord\\Shared\\XMLWriter::__destruct<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLWriter::getData<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeElementBlock<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeElementIf<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeAttributeIf<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\XMLWriter::writeAttribute<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::__call<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\ZipArchive::open<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\ZipArchive::close<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::extractTo<\/a>"],[100,3," PhpOffice\\PhpWord\\Shared\\ZipArchive::getFromName<\/a>"],[90.9090909090909,5," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipAddFile<\/a>"],[100,1," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipAddFromString<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipExtractTo<\/a>"],[100,4," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipGetFromName<\/a>"],[100,2," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipGetNameIndex<\/a>"],[100,5," PhpOffice\\PhpWord\\Shared\\ZipArchive::pclzipLocateName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addLinkStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addNumberingStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Style::addTitleStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::addTableStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::countStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::resetStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::setDefaultParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style::getStyles<\/a>"],[100,2," PhpOffice\\PhpWord\\Style::getStyle<\/a>"],[100,6," PhpOffice\\PhpWord\\Style::setStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::getIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::isAuto<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\AbstractStyle::setAuto<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::getChildStyleValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleValue<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setStyleByArray<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNonEmptyVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setBoolVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setNumericVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setIntVal<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\AbstractStyle::setFloatVal<\/a>"],[100,7," PhpOffice\\PhpWord\\Style\\AbstractStyle::setEnumVal<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\AbstractStyle::setObjectVal<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\AbstractStyle::setPairedVal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderTopStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderLeftStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderRightStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setBorderBottomStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::hasBorder<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::getMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Border::setMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVAlign<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getTextDirection<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setTextDirection<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setGridSpan<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getVMerge<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Cell::setVMerge<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getWidth<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Cell::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::setNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Cell::getNoWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::is3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::set3d<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::isShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowLegend<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getLegendPosition<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\Chart::setLegendPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowAxisLabels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getDataLabelOptions<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Chart::setDataLabelOptions<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueLabelPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setCategoryAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setValueAxisTitle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::getMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setMajorTickPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::showGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Chart::setShowGridX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Extrusion::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Fill::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getStyleType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setName<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBold<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setItalic<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setUnderline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSuperScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSubScript<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setDoubleStrikethrough<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSmallCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setAllCaps<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setScale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setKerning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setNoProof<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setRTL<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getLang<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Font::setLang<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::isHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setHidden<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::setFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Font::getFallbackFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Frame::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setHPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setVPosRelTo<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setWrapDistanceRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Frame::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setWrappingStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPositioning<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontal<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVertical<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosHorizontalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::getPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Image::setPosVerticalRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setFirstLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Indentation::setHanging<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Language::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLatin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getLangId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getEastAsia<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::setBidirectional<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Language::getBidirectional<\/a>"],[88.88888888888889,8," PhpOffice\\PhpWord\\Style\\Language::validateLocale<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::isFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setFlip<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setConnectorType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setBeginArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Line::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setIncrement<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setDistance<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\LineNumbering::setRestart<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::setListType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\ListItem::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\ListItem::getNumId<\/a>"],[0,1," PhpOffice\\PhpWord\\Style\\ListItem::setNumId<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\ListItem::getListTypeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setNumId<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Numbering::getLevels<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Numbering::setLevels<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFormat<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setRestart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setPStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setSuffix<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\NumberingLevel::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::getHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\NumberingLevel::setHint<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setWeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setDash<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndCap<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setStartArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::getEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Outline::setEndArrow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getSize<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paper::setSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paper::getHeight<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Paragraph::setStyleValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getStyleValues<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getAlignment<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBasedOn<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndentation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setHanging<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpaceAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSpacingLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getLineHeight<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Paragraph::setLineHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setWidowControl<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepNext<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setKeepLines<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setPageBreakBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setNumLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTabs<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Paragraph::setTabs<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setContextualSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::isBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setBidi<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::getTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setTextAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::hasSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Paragraph::setSuppressAutoHyphens<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setTblHeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setCantSplit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::isExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Row::setExactHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPaperSize<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Section::setPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setSettingValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Style\\Section::setOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPortrait<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLandscape<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeW<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageSizeH<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setGutter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setHeaderHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setFooterHeight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setPageNumberingStart<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsNum<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setColsSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setBreakType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setLineNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::getVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Section::setVAlign<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setPattern<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shading::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::getOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shadow::setOffset<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setPoints<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setRoundness<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFrame<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setOutline<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setShadow<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::getExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Shape::setExtrusion<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setBefore<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setAfter<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::getLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Spacing::setLineRule<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabPos<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setTabLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TOC::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setType<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setLeader<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Tab::setPosition<\/a>"],[100,5," PhpOffice\\PhpWord\\Style\\Table::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellSpacing<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getFirstRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideHColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBorderInsideVColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setCellMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::hasMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getAlignment<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setAlignment<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setUnit<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getLayout<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setLayout<\/a>"],[100,2," PhpOffice\\PhpWord\\Style\\Table::getTableOnlyProperty<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\Table::setTableOnlyProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setPosition<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setIndent<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::getColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setColumnWidths<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::isBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\Table::setBidiVisual<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setLeftFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setRightFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTopFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setBottomFromText<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setVertAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setHorzAnchor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpXSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpX<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpYSpec<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::getTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TablePosition::setTblpY<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBgColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginTop<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginLeft<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginRight<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMarginBottom<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setInnerMargin<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getInnerMargin<\/a>"],[100,3," PhpOffice\\PhpWord\\Style\\TextBox::hasInnerMargins<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::setBorderColor<\/a>"],[100,1," PhpOffice\\PhpWord\\Style\\TextBox::getBorderColor<\/a>"],[100,5," PhpOffice\\PhpWord\\TemplateProcessor::__construct<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::__destruct<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::zip<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::readPartWithRels<\/a>"],[72.72727272727273,5," PhpOffice\\PhpWord\\TemplateProcessor::transformSingleXml<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::transformXml<\/a>"],[85.71428571428571,2," PhpOffice\\PhpWord\\TemplateProcessor::applyXslStyleSheet<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::ensureMacroCompleted<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::ensureUtf8Encoded<\/a>"],[92.3076923076923,2," PhpOffice\\PhpWord\\TemplateProcessor::setComplexValue<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setComplexBlock<\/a>"],[100,8," PhpOffice\\PhpWord\\TemplateProcessor::setValue<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::setValues<\/a>"],[90.9090909090909,4," PhpOffice\\PhpWord\\TemplateProcessor::setCheckbox<\/a>"],[0,1," PhpOffice\\PhpWord\\TemplateProcessor::setChart<\/a>"],[77.27272727272727,8," PhpOffice\\PhpWord\\TemplateProcessor::getImageArgs<\/a>"],[90,6," PhpOffice\\PhpWord\\TemplateProcessor::chooseImageDimension<\/a>"],[55.172413793103445,8," PhpOffice\\PhpWord\\TemplateProcessor::fixImageWidthHeightRatio<\/a>"],[96.7741935483871,12," PhpOffice\\PhpWord\\TemplateProcessor::prepareImageAttrs<\/a>"],[96.15384615384616,4," PhpOffice\\PhpWord\\TemplateProcessor::addImageToRelations<\/a>"],[100,13," PhpOffice\\PhpWord\\TemplateProcessor::setImageValue<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::getVariableCount<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getVariables<\/a>"],[95.83333333333334,7," PhpOffice\\PhpWord\\TemplateProcessor::cloneRow<\/a>"],[30.303030303030305,11," PhpOffice\\PhpWord\\TemplateProcessor::deleteRow<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::cloneRowAndSetValues<\/a>"],[100,7," PhpOffice\\PhpWord\\TemplateProcessor::cloneBlock<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::replaceBlock<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::deleteBlock<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::setUpdateFields<\/a>"],[100,4," PhpOffice\\PhpWord\\TemplateProcessor::save<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::savePartWithRels<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::saveAs<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::fixBrokenMacros<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::setValueForPart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getVariablesForPart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getHeaderName<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::getMainPartName<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getSettingsPartName<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getFooterName<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getRelationsName<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\TemplateProcessor::getNextRelationsIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getDocumentContentTypesName<\/a>"],[92.85714285714286,3," PhpOffice\\PhpWord\\TemplateProcessor::findTableStart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::findTableEnd<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\TemplateProcessor::findRowStart<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::findRowEnd<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::getSlice<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::indexClonedVariables<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::replaceCarriageReturns<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::replaceClonedVariables<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::replaceXmlBlock<\/a>"],[100,5," PhpOffice\\PhpWord\\TemplateProcessor::findContainingXmlBlockForMacro<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::findMacro<\/a>"],[100,4," PhpOffice\\PhpWord\\TemplateProcessor::findXmlBlockStart<\/a>"],[100,2," PhpOffice\\PhpWord\\TemplateProcessor::findXmlBlockEnd<\/a>"],[100,3," PhpOffice\\PhpWord\\TemplateProcessor::splitTextIntoTexts<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::textNeedsSplitting<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setMacroOpeningChars<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setMacroClosingChars<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::setMacroChars<\/a>"],[100,1," PhpOffice\\PhpWord\\TemplateProcessor::getTempDocumentFilename<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getPhpWord<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::setPhpWord<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getWriterPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::isUseDiskCaching<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::setUseDiskCaching<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getDiskCachingDirectory<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getTempDir<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::setTempDir<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getTempFile<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\AbstractWriter::cleanupTempFile<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::clearTempDir<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\AbstractWriter::getZipArchive<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\AbstractWriter::openFile<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\AbstractWriter::writeFile<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\AbstractWriter::addFilesToPackage<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\AbstractWriter::addFileToPackage<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\AbstractWriter::deleteDir<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::save<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML::getContent<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getEditCallback<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::setEditCallback<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::isPdf<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getNotes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::addNote<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getDefaultGenericFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::setDefaultGenericFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::getDefaultWhiteSpace<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML::setDefaultWhiteSpace<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML::escapeHTML<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\AbstractElement::setWithoutP<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Bookmark::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Container::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Footnote::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Image::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Link::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItem::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\ListItemRun::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\PageBreak::write<\/a>"],[100,20," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table::getTableStyle<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Table::calculateCellRowSpan<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::setOpeningText<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::setClosingText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeOpening<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeClosing<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeTrackChangeOpening<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::writeTrackChangeClosing<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::getParagraphStyle<\/a>"],[100,12," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Text::processFontStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\TextRun::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Element\\Title::write<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart::setParentWriter<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\AbstractPart::getParentWriter<\/a>"],[94.11764705882352,4," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Body::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Body::writeNotes<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head::write<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head::writeStyles<\/a>"],[83.33333333333334,3," PhpOffice\\PhpWord\\Writer\\HTML\\Part\\Head::getFontFamily<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::setParentWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::getParentWriter<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::getStyle<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::assembleCss<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\AbstractStyle::getValueIf<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Font::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Font::getFontFamily<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Generic::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Image::write<\/a>"],[90,23," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Paragraph::write<\/a>"],[93.93939393939394,22," PhpOffice\\PhpWord\\Writer\\HTML\\Style\\Table::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\ODText::__construct<\/a>"],[90.47619047619048,8," PhpOffice\\PhpWord\\Writer\\ODText::save<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Field::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Field::writeDefault<\/a>"],[90.47619047619048,3," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Formula::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Image::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Link::write<\/a>"],[92.85714285714286,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\ListItemRun::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\PageBreak::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table::writeColumns<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Table::writeRow<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text::replacetabs<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Text::writeChangeInsertion<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextBreak::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\TextRun::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Title::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Element\\Title::compareToFirstElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::writeCommonRootAttributes<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::writeFontFaces<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::addObject<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::setObjects<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\AbstractPart::getObjects<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::writeAutoStyles<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::writeTextStyles<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getAutoStyles<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getContainerStyle<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getElementStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getElementStyleField<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::getElementStyleTextRun<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Content::collectTrackedChanges<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Manifest::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Meta::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Meta::writeCustomProperty<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Mimetype::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::write<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writeDefault<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writeNamed<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::cvttwiptostr<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writePageLayout<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writePageLayoutIndiv<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\ODText\\Part\\Styles::writeMaster<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Font::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Image::write<\/a>"],[96.875,3," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Numbering::write<\/a>"],[100,31," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Paragraph::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Section::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\ODText\\Style\\Table::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\PDF::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF::__call<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF::save<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF::getRenderer<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::getFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::setFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::getPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::setPaperSize<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::getOrientation<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::setOrientation<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::prepareForSave<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\AbstractRenderer::restoreStateAfterSave<\/a>"],[75,2," PhpOffice\\PhpWord\\Writer\\PDF\\DomPDF::createExternalWriterInstance<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\DomPDF::save<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::__construct<\/a>"],[80,2," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::createExternalWriterInstance<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::save<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\PDF\\MPDF::getMPdfClassName<\/a>"],[75,2," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF::createExternalWriterInstance<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF::prepareToWrite<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\PDF\\TCPDF::save<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::save<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getContent<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getFontTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getColorTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::getLastParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF::setLastParagraphStyle<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::__construct<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::getStyles<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeOpening<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeClosing<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\AbstractElement::writeFontStyle<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Container::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writePage<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writeNumpages<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writeFilename<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Field::writeDate<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Image::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Link::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\PageBreak::write<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeRowDef<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeRow<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeCell<\/a>"],[100,25," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeCellStyle<\/a>"],[93.33333333333333,6," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::writeCellBorder<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Table::getVMerge<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Text::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\TextRun::write<\/a>"],[60,6," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Title::getStyles<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\RTF\\Element\\Title::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::__construct<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::setParentWriter<\/a>"],[66.66666666666666,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\AbstractPart::getParentWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeInfo<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeFormatting<\/a>"],[85.71428571428571,5," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeTitlepg<\/a>"],[95.55555555555556,19," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::writeSections<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Document::getDateValue<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::getFontTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::getColorTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeCharset<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeDefaults<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeFontTable<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeColorTable<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::writeGenerator<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerFont<\/a>"],[75,3," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerBorderColor<\/a>"],[66.66666666666666,3," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerFontItems<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Part\\Header::registerTableItem<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::setParentWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::getParentWriter<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::getStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\AbstractStyle::getValueIf<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::write<\/a>"],[73.33333333333333,4," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::writeSide<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::setSizes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Border::setColors<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font::setNameIndex<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Font::setColorIndex<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Indentation::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::write<\/a>"],[50,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::writeIndentation<\/a>"],[50,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::writeTabs<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Paragraph::setNestedLevel<\/a>"],[79.16666666666666,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Section::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\RTF\\Style\\Tab::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007::__construct<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007::save<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007::getContentTypes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007::getRelationships<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007::addHeaderFooterMedia<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007::addHeaderFooterContent<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007::addNotes<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007::addComments<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007::addChart<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007::registerContentTypes<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getXmlWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getElement<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::startElementP<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::endElementP<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeCommentRangeStart<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeCommentRangeEnd<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeFontStyle<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeTextStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::writeText<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::setPart<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\AbstractElement::getPart<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Bookmark::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Chart::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\CheckBox::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Container::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Container::writeElement<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::writeDefault<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::writeMacrobutton<\/a>"],[100,16," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::buildPropertiesAndOptions<\/a>"],[73.07692307692307,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::writeRef<\/a>"],[47.05882352941176,10," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Field::convertRefOption<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Footnote::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::writeTextInput<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::writeCheckBox<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\FormField::writeDropDown<\/a>"],[90,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Formula::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image::writeImage<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Image::writeWatermark<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Line::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Link::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItem::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::writeParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::writeParagraphProperties<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ListItemRun::writeParagraphPropertiesNumbering<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\OLEObject::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PageBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment::getAttributes<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\PreserveText::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writePlainText<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writeComboBox<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writeDropDownList<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\SDT::writeDate<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeArc<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeCurve<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writePolyline<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::writeRoundRect<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Shape::getPoints<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::writeTitle<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::writeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TOC::writeFieldMark<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::writeColumns<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::writeRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Table::writeCell<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment::getName<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment::getAttributes<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text::writeOpeningTrackChange<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Text::writeClosingTrackChange<\/a>"],[96.55172413793103,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBox::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextBreak::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TextRun::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\Title::write<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::setParentWriter<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::getParentWriter<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::getXmlWriter<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\AbstractPart::writeText<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::setElement<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeChart<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writePlotArea<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeSeries<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeSeriesItem<\/a>"],[100,13," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeAxis<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeShape<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Chart::writeAxisTitle<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments::writeComment<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Comments::setElements<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\ContentTypes::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\ContentTypes::writeContentType<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsApp::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCore::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\DocPropsCustom::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document::writeSection<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Document::writeSectionSettings<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\FontTable::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footer::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footer::setElement<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes::setElements<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Footnotes::writeNote<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::writeLevel<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::writeParagraph<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::writeFont<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Numbering::getRandomHexNumber<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::writeRels<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::writeMediaRel<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Rels::writeRel<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsDocument::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsPart::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\RelsPart::setMedia<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::writeSetting<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::getSettings<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setOnOffValue<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setDocumentProtection<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setProofState<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setRevisionView<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setThemeFontLang<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setZoom<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setConsecutiveHyphenLimit<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setHyphenationZone<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Settings::setCompatibility<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::write<\/a>"],[100,9," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeDefaultStyles<\/a>"],[100,10," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeFontStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeParagraphStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Styles::writeTableStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeColorScheme<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFontScheme<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatScheme<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatFill<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatLine<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatEffect<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\Theme::writeFormatBackground<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Part\\WebSettings::write<\/a>"],[100,0," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::__construct<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::getXmlWriter<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::getStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::convertTwip<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::writeChildStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::writeOnOf<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\AbstractStyle::assembleStyle<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Cell::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Cell::setWidth<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Extrusion::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Fill::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font::write<\/a>"],[100,14," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font::writeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Font::setIsInline<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::writeAlignment<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::writeWrap<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Frame::getStyles<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Indentation::write<\/a>"],[100,5," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Line::writeStroke<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\LineNumbering::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::write<\/a>"],[100,7," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::writeSide<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setSizes<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setColors<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setStyles<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\MarginBorder::setAttributes<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Outline::write<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::write<\/a>"],[100,8," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::writeStyle<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::writeTabs<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::writeNumbering<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::setWithoutPPR<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Paragraph::setIsInline<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Row::write<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Row::setHeight<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Section::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shading::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shadow::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Shape::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Spacing::write<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Tab::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::write<\/a>"],[100,4," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeStyle<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeLayout<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeMargin<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeBorder<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeTblWidth<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeFirstRow<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeShading<\/a>"],[100,1," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::setWidth<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\Table::writeIndent<\/a>"],[100,6," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TablePosition::write<\/a>"],[100,3," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TextBox::writeInnerMargin<\/a>"],[100,2," PhpOffice\\PhpWord\\Writer\\Word2007\\Style\\TextBox::writeBorder<\/a>"]], 'Method Complexity'))
.transition()
.duration(500)
.call(chart);
diff --git a/coverage/index.html b/coverage/index.html
index f1afa4fb6e..3e2d5ffa21 100644
--- a/coverage/index.html
+++ b/coverage/index.html
@@ -50,7 +50,7 @@
96.92%
- 11880 / 12258
+ 11886 / 12264
95.22% covered (success)
@@ -294,13 +294,13 @@
Style
-
-
99.37% covered (success)
+
+ 99.38% covered (success)
- 99.37%
- 1266 / 1274
+ 99.38%
+ 1272 / 1280
diff --git a/docs/classes/PhpOffice-PhpWord-Style-Cell.html b/docs/classes/PhpOffice-PhpWord-Style-Cell.html
index 147b7c91ff..c734003773 100644
--- a/docs/classes/PhpOffice-PhpWord-Style-Cell.html
+++ b/docs/classes/PhpOffice-PhpWord-Style-Cell.html
@@ -409,14 +409,14 @@
$vAlign
- : string
+ : null|string
Vertical align (top, center, both, bottom).
$vMerge
- : string
+ : null|string
rowspan (restart, continue).
@@ -634,14 +634,14 @@
getVAlign()
- : string
+ : null|string
Get vertical align.
getVMerge()
- : string
+ : null|string
Get vertical merge (rowspan).
@@ -2291,7 +2291,7 @@
private
- string
+ null|string
$vAlign
@@ -2328,7 +2328,7 @@
private
- string
+ null|string
$vMerge
@@ -2403,7 +2403,7 @@
@@ -3094,7 +3094,7 @@
@@ -3328,7 +3328,7 @@
@@ -3367,7 +3367,7 @@
@@ -3445,7 +3445,7 @@
@@ -3484,7 +3484,7 @@
@@ -3531,7 +3531,7 @@
public
- getVAlign ( ) : string
+ getVAlign ( ) : null|string
@@ -3544,7 +3544,7 @@
Return values
- string
+ null|string
@@ -3562,7 +3562,7 @@
@@ -3570,7 +3570,7 @@
public
- getVMerge ( ) : string
+ getVMerge ( ) : null|string
@@ -3583,7 +3583,7 @@
Return values
- string
+ null|string
@@ -3601,7 +3601,7 @@
@@ -3767,7 +3767,7 @@
@@ -4551,7 +4551,7 @@
@@ -4845,7 +4845,7 @@
@@ -4894,7 +4894,7 @@
@@ -5102,7 +5102,7 @@
@@ -5151,7 +5151,7 @@
@@ -5204,7 +5204,7 @@
public
- setVAlign ( [ string $value = null ] ) : self
+ setVAlign ( [ null|string $value = null ] ) : self
@@ -5214,7 +5214,7 @@ Parameters
$value
- : string
+ : null|string
= null
@@ -5245,7 +5245,7 @@
@@ -5253,7 +5253,7 @@
public
- setVMerge ( [ string $value = null ] ) : self
+ setVMerge ( [ null|string $value = null ] ) : self
@@ -5263,7 +5263,7 @@ Parameters
$value
- : string
+ : null|string
= null
@@ -5294,7 +5294,7 @@
diff --git a/search/search_index.json b/search/search_index.json
index 925b91fdfb..070ee5e259 100644
--- a/search/search_index.json
+++ b/search/search_index.json
@@ -1 +1 @@
-{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"index.html","title":"Introduction","text":" PHPWord is a library written in pure PHP that provides a set ofclasses to write to different document file formats, i.e. Microsoft Office Open XML(.docx
), OASIS Open Document Format for Office Applications (.odt
), Rich Text Format (.rtf
), Microsoft Word Binary File (.doc
), HTML (.html
), and PDF (.pdf
).
PHPWord is an open source project licensed under the terms of LGPL version 3. PHPWord is aimed to be a high quality software product by incorporating continuous integration and unit testing. You can learn more about PHPWord by reading this Developers'Documentation.
"},{"location":"index.html#features","title":"Features","text":" Set document properties, e.g. title, subject, and creator. Create document sections with different settings, e.g. portrait/landscape, page size, and page numbering Create header and footer for each sections Set default font type, font size, and paragraph style Use UTF-8 and East Asia fonts/characters Define custom font styles (e.g. bold, italic, color) and paragraph styles (e.g. centered, multicolumns, spacing) either as named style or inline in text Insert paragraphs, either as a simple text or complex one (a text run) that contains other elements Insert titles (headers) and table of contents Insert text breaks and page breaks Insert and format images, either local, remote, or as page watermarks Insert binary OLE Objects such as Excel or Visio Insert and format table with customized properties for each rows (e.g. repeat as header row) and cells (e.g. background color, rowspan, colspan) Insert list items as bulleted, numbered, or multilevel Insert hyperlinks Insert footnotes and endnotes Insert drawing shapes (arc, curve, line, polyline, rect, oval) Insert charts (pie, doughnut, bar, line, area, scatter, radar) Insert form fields (textinput, checkbox, and dropdown) Create document from templates Use XSL 1.0 style sheets to transform headers, main document part, and footers of an OOXML template ... and many more features on progress "},{"location":"index.html#file-formats","title":"File formats","text":"Below are the supported features for each file formats.
"},{"location":"index.html#writers","title":"Writers","text":"Features OOXML ODF RTF HTML PDF Document Properties Standard Custom Element Type Text Text Run Title Link Preserve Text Text Break Page Break List Table Image Object Watermark Table of Contents Header Footer Footnote Endnote Comments Graphs 2D basic graphs 2D advanced graphs 3D graphs Math OMML support MathML support Bonus Encryption Protection"},{"location":"index.html#readers","title":"Readers","text":"Features OOXML DOC ODF RTF HTML Document Properties Standard Custom Element Type Text Text Run Title Link Preserve Text Text Break Page Break List Table Image Object Watermark Table of Contents Header Footer Footnote Endnote Comments Graphs 2D basic graphs 2D advanced graphs 3D graphs Math OMML support MathML support Bonus Encryption Protection"},{"location":"index.html#contributing","title":"Contributing","text":"We welcome everyone to contribute to PHPWord. Below are some of the things that you can do to contribute:
Read our contributing guide Fork us and request a pull to the master branch Submit bug reports or feature requests to GitHub Follow @PHPOffice on Twitter "},{"location":"credits.html","title":"Credits","text":"Images from chart page come from the LibreOffice Core.
Some definitions come from the Office Open XML.
"},{"location":"credits.html#references","title":"References","text":""},{"location":"credits.html#openxml","title":"OpenXML","text":"Known as \"ISO/IEC 29500, Third edition, 2012-09-01\"
ISO :
Part 1: Fundamentals and Markup Language Reference Part 2: Open Packaging Conventions Part 3: Markup Compatibility and Extensibility Part 4: Transitional Migration Features MSDN :
Open XML SDK 2.5 with Validator DocumentFormat.OpenXml.Wordprocessing Namespace on MSDN Library of Congress :
OOXML Format Family -- ISO/IEC 29500 and ECMA 376 Schemas in W3C XML Schema language and in RELAX NG for the Strict variant of PPTX, etc. "},{"location":"credits.html#opendocument","title":"OpenDocument","text":" Oasis OpenDocument Standard Version 1.2 Schema Central Open Document 1.1 "},{"location":"credits.html#rich-text-format","title":"Rich Text Format","text":" Rich Text Format (RTF) Specification, version 1.9.1 "},{"location":"credits.html#word-97","title":"Word 97","text":""},{"location":"faq.html","title":"Frequently asked questions","text":""},{"location":"faq.html#how-contribute-to-phpword","title":"How contribute to PHPWord?","text":" Improve the documentation "},{"location":"howto.html","title":"How to","text":""},{"location":"howto.html#create-float-left-image","title":"Create float left image","text":"Use absolute positioning relative to margin horizontally and to line vertically.
<?php\n\n$imageStyle = array(\n 'width' => 40,\n 'height' => 40,\n 'wrappingStyle' => 'square',\n 'positioning' => 'absolute',\n 'posHorizontalRel' => 'margin',\n 'posVerticalRel' => 'line',\n);\n$textrun->addImage('resources/_earth.jpg', $imageStyle);\n
"},{"location":"howto.html#download-the-produced-file-automatically","title":"Download the produced file automatically","text":"Use php://output
as the filename.
<?php\n\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n$section = $phpWord->addSection();\n$section->addText('Hello World!');\n$file = 'HelloWorld.docx';\nheader(\"Content-Description: File Transfer\");\nheader('Content-Disposition: attachment; filename=\"' . $file . '\"');\nheader('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document');\nheader('Content-Transfer-Encoding: binary');\nheader('Cache-Control: must-revalidate, post-check=0, pre-check=0');\nheader('Expires: 0');\n$xmlWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'Word2007');\n$xmlWriter->save(\"php://output\");\n
"},{"location":"howto.html#create-numbered-headings","title":"Create numbered headings","text":"Define a numbering style and title styles, and match the two styles (with pStyle
and numStyle
) like below.
<?php\n\n$phpWord->addNumberingStyle(\n 'hNum',\n array('type' => 'multilevel', 'levels' => array(\n array('pStyle' => 'Heading1', 'format' => 'decimal', 'text' => '%1'),\n array('pStyle' => 'Heading2', 'format' => 'decimal', 'text' => '%1.%2'),\n array('pStyle' => 'Heading3', 'format' => 'decimal', 'text' => '%1.%2.%3'),\n )\n )\n);\n$phpWord->addTitleStyle(1, array('size' => 16), array('numStyle' => 'hNum', 'numLevel' => 0));\n$phpWord->addTitleStyle(2, array('size' => 14), array('numStyle' => 'hNum', 'numLevel' => 1));\n$phpWord->addTitleStyle(3, array('size' => 12), array('numStyle' => 'hNum', 'numLevel' => 2));\n\n$section->addTitle('Heading 1', 1);\n$section->addTitle('Heading 2', 2);\n$section->addTitle('Heading 3', 3);\n
"},{"location":"howto.html#add-a-link-within-a-title","title":"Add a link within a title","text":"Apply 'HeadingN' paragraph style to TextRun or Link. Sample code:
<?php\n\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n$phpWord->addTitleStyle(1, array('size' => 16, 'bold' => true));\n$phpWord->addTitleStyle(2, array('size' => 14, 'bold' => true));\n$phpWord->addFontStyle('Link', array('color' => '0000FF', 'underline' => 'single'));\n\n$section = $phpWord->addSection();\n\n// Textrun\n$textrun = $section->addTextRun('Heading1');\n$textrun->addText('The ');\n$textrun->addLink('https://github.com/PHPOffice/PHPWord', 'PHPWord', 'Link');\n\n// Link\n$section->addLink('https://github.com/', 'GitHub', 'Link', 'Heading2');\n
"},{"location":"howto.html#remove-compatibility-mode-text-in-the-ms-word-title-bar","title":"Remove [Compatibility Mode] text in the MS Word title bar","text":"Use the Metadata\\Compatibility\\setOoxmlVersion(n)
method with n
is the version of Office:
14 = Office 2010 15 = Office 2013 <?php\n\n$phpWord->getCompatibility()->setOoxmlVersion(15);\n
"},{"location":"install.html","title":"Installation","text":""},{"location":"install.html#requirements","title":"Requirements","text":"Mandatory:
PHP 7.1+ PHP DOM extension PHP JSON extension PHP XML Parser extension PHP XMLWriter extension "},{"location":"install.html#installation_1","title":"Installation","text":"There are two ways to install PHPWord, i.e. via Composer or manually by downloading the library.
"},{"location":"install.html#using-composer","title":"Using Composer","text":"To install via Composer, add the following lines to your composer.json
:
{\n \"require\": {\n \"phpoffice/phpword\": \"dev-master\"\n }\n}\n
"},{"location":"install.html#using-manual-install","title":"Using manual install","text":"To install manually:
download PHPOffice\\PHPWord package from GitHub download PHPOffice\\Common package from GitHub extract the package and put the contents to your machine. <?php\n\nrequire_once 'path/to/PHPWord/src/PhpWord/Autoloader.php';\n\\PhpOffice\\PhpWord\\Autoloader::register();\n\nrequire_once 'path/to/PhpOffice/Common/src/Common/Autoloader.php';\n\\PhpOffice\\Common\\Autoloader::register();\n
"},{"location":"install.html#samples","title":"Samples","text":"After installation, you can browse and use the samples that we've provided, either by command line or using browser. If you can access your PhpWord library folder using browser, point your browser to the samples
folder, e.g. http://localhost/PhpWord/samples/
.
"},{"location":"changes/0.x/0.10.0.html","title":"0.10.0 (4 May 2014)","text":"This release marked heavy refactorings on internal code structure with the creation of some abstract classes to reduce code duplication. Element
subnamespace is introduced in this release to replace Section
. Word2007 reader capability is greatly enhanced. Endnote is introduced. List numbering is now customizable. Basic HTML and PDF writing support is enabled. Basic ODText reader is introduced.
"},{"location":"changes/0.x/0.10.0.html#features","title":"Features","text":" Image: Get image dimensions without EXIF extension - @andrew-kzoo #184 Table: Add tblGrid
element for Libre/Open Office table sizing - @gianis6 #183 Footnote: Ability to insert textbreak in footnote $footnote->addTextBreak()
- @ivanlanin Footnote: Ability to style footnote reference mark by using FootnoteReference
style - @ivanlanin Font: Add bgColor
to font style to define background using HEX color - @jcarignan #168 Table: Add exactHeight
to row style to define whether row height should be exact or atLeast - @jcarignan #168 Element: New CheckBox
element for sections and table cells - @ozilion #156 Settings: Ability to use PCLZip as alternative to ZipArchive - @bskrtich @ivanlanin #106, #140, #185 Template: Ability to find & replace variables in headers & footers - @dgudgeon #190 Template: Ability to clone & delete block of text using cloneBlock
and deleteBlock
- @diego-vieira #191 TOC: Ability to have two or more TOC in one document and to set min and max depth for TOC - @Pyreweb #189 Table: Ability to add footnote in table cell - @ivanlanin #187 Footnote: Ability to add image in footnote - @ivanlanin #187 ListItem: Ability to add list item in header/footer - @ivanlanin #187 CheckBox: Ability to add checkbox in header/footer - @ivanlanin #187 Link: Ability to add link in header/footer - @ivanlanin #187 Object: Ability to add object in header, footer, textrun, and footnote - @ivanlanin #187 Media: Add Media::resetElements()
to reset all media data - @juzi #19 General: Add Style::resetStyles()
- @ivanlanin #187 DOCX Reader: Ability to read header, footer, footnotes, link, preservetext, textbreak, pagebreak, table, list, image, and title - @ivanlanin Endnote: Ability to add endnotes - @ivanlanin ListItem: Ability to create custom list and reset list number - @ivanlanin #10, #198 ODT Writer: Basic table writing support - @ivanlanin Image: Keep image aspect ratio if only 1 dimension styled - @japonicus #194 HTML Writer: Basic HTML writer: text, textrun, link, title, textbreak, table, image (as Base64), footnote, endnote - @ivanlanin #203, #67, #147 PDF Writer: Basic PDF writer using DomPDF: All HTML element except image - @ivanlanin #68 DOCX Writer: Change docProps/app.xml
Application
to PHPWord
- @ivanlanin DOCX Writer: Create word/settings.xml
and word/webSettings.xml
dynamically - @ivanlanin ODT Writer: Basic image writing - @ivanlanin ODT Writer: Link writing - @ivanlanin ODT Reader: Basic ODText Reader - @ivanlanin #71 Section: Ability to define gutter and line numbering - @ivanlanin Font: Small caps, all caps, and double strikethrough - @ivanlanin #151 Settings: Ability to use measurement unit other than twips with setMeasurementUnit
- @ivanlanin #199 Style: Remove bgColor
from Font
, Table
, and Cell
and put it into the new Shading
style - @ivanlanin Style: New Indentation
and Spacing
style - @ivanlanin Paragraph: Ability to define first line and right indentation - @ivanlanin "},{"location":"changes/0.x/0.10.0.html#bugfixes","title":"Bugfixes","text":" Footnote: Footnote content doesn't show footnote reference number - @ivanlanin #170 Documentation: Error in a function - @theBeerNut #195 "},{"location":"changes/0.x/0.10.0.html#deprecated","title":"Deprecated","text":" createTextRun
replaced by addTextRun
createFootnote
replaced by addFootnote
createHeader
replaced by addHeader
createFooter
replaced by addFooter
createSection
replaced by addSection
Element\\Footnote::getReferenceId
replaced by Element\\AbstractElement::getRelationId
Element\\Footnote::setReferenceId
replaced by Element\\AbstractElement::setRelationId
Footnote::addFootnoteLinkElement
replaced by Media::addElement
Footnote::getFootnoteLinkElements
replaced by Media::getElements
All current methods on Media
Element\\Link::getLinkSrc
replaced by Element\\Link::getTarget
Element\\Link::getLinkName
replaced by Element\\Link::getText
Style\\Cell::getDefaultBorderColor
"},{"location":"changes/0.x/0.10.0.html#miscellaneous","title":"Miscellaneous","text":" Documentation: Simplify page level docblock - @ivanlanin #179 Writer: Refactor writer classes and create a new Write\\AbstractWriter
abstract class - @ivanlanin #160 General: Refactor folders: Element
and Exception
- @ivanlanin #187 General: Remove legacy HashTable
and Shared\\ZipStreamWrapper
and all related properties/methods - @ivanlanin #187 Element: New AbstractElement
abstract class - @ivanlanin #187 Media: Refactor media class to use one method for all docPart (section, header, footer, footnote) - @ivanlanin #187 General: Remove underscore prefix from all private properties name - @ivanlanin #187 General: Move Section Settings
to Style\\Section
- @ivanlanin #187 General: Give Abstract
prefix and Interface
suffix for all abstract classes and interfaces as per PHP-FIG recommendation - @ivanlanin #187 Style: New Style\\AbstractStyle
abstract class - @ivanlanin #187 Writer: New 'ODText\\Base` class - @ivanlanin #187 General: Rename Footnote
to Footnotes
to reflect the nature of collection - @ivanlanin General: Add some unit tests for Shared & Element (100%!) - @Progi1984 Test: Add some samples and tests for image wrapping style - @brunocasado #59 Refactor: Remove Style\\Tabs - @ivanlanin Refactor: Apply composite pattern for writers - @ivanlanin Refactor: Split AbstractContainer
from AbstractElement
- @ivanlanin Refactor: Apply composite pattern for Word2007 reader - @ivanlanin "},{"location":"changes/0.x/0.10.1.html","title":"0.10.1 (21 May 2014)","text":"This is a bugfix release for php-zip
requirement in Composer.
Change Composer requirements for php-zip from require
to suggest
- @bskrtich #246 "},{"location":"changes/0.x/0.11.0.html","title":"0.11.0 (1 June 2014)","text":"This release marked the change of PHPWord license from LGPL 2.1 to LGPL 3. Four new elements were added: TextBox, ListItemRun, Field, and Line. Relative and absolute positioning for images and textboxes were added. Writer classes were refactored into parts, elements, and styles. ODT and RTF features were enhanced. Ability to add elements to PHPWord object via HTML were implemented. RTF and HTML reader were initiated.
"},{"location":"changes/0.x/0.11.0.html#features","title":"Features","text":" Image: Ability to define relative and absolute positioning - @basjan #217 Footer: Conform footer with header by adding firstPage, evenPage and by inheritance - @basjan @ivanlanin #219 Element: New TextBox
element - @basjan @ivanlanin #228, #229, #231 HTML: Ability to add elements to PHPWord object via html - @basjan #231 Element: New ListItemRun
element that can add a list item with inline formatting like a textrun - @basjan #235 Table: Ability to add table inside a cell (nested table) - @ivanlanin #149 RTF Writer: UTF8 support for RTF: Internal UTF8 text is converted to Unicode before writing - @ivanlanin #158 Table: Ability to define table width (in percent and twip) and position - @ivanlanin #237 RTF Writer: Ability to add links and page breaks in RTF - @ivanlanin #196 ListItemRun: Remove fontStyle parameter because ListItemRun is inherited from TextRun and TextRun doesn't have fontStyle - @ivanlanin Config: Ability to use a config file to store various common settings - @ivanlanin #200 ODT Writer: Enable inline font style in TextRun - @ivanlanin ODT Writer: Enable underline, strike/doublestrike, smallcaps/allcaps, superscript/subscript font style - @ivanlanin ODT Writer: Enable section and column - @ivanlanin PDF Writer: Add TCPDF and mPDF as optional PDF renderer library - @ivanlanin ODT Writer: Enable title element and custom document properties - @ivanlanin ODT Reader: Ability to read standard and custom document properties - @ivanlanin Word2007 Writer: Enable the missing custom document properties writer - @ivanlanin Image: Enable \"image float left\" - @ivanlanin #244 RTF Writer: Ability to write document properties - @ivanlanin RTF Writer: Ability to write image - @ivanlanin Element: New Field
element - @basjan #251 RTF Reader: Basic RTF reader - @ivanlanin #72, #252 Element: New Line
element - @basjan #253 Title: Ability to apply numbering in heading - @ivanlanin #193 HTML Reader: Basic HTML reader - @ivanlanin #80, #254 RTF Writer: Basic table writing - @ivanlanin #245 "},{"location":"changes/0.x/0.11.0.html#bugfixes","title":"Bugfixes","text":" Header: All images added to the second header were assigned to the first header - @basjan #222 Conversion: Fix conversion from cm to pixel, pixel to cm, and pixel to point - @basjan #233, #234 PageBreak: Page break adds new line in the beginning of the new page - @ivanlanin #150 Image: marginLeft
and marginTop
cannot accept float value - @ivanlanin #248 Title: Orphan w:fldChar
caused OpenOffice to crash when opening DOCX - @ivanlanin #236 "},{"location":"changes/0.x/0.11.0.html#deprecated","title":"Deprecated","text":" Static classes Footnotes
, Endnotes
, and TOC
Writer\\Word2007\\Part
: Numbering::writeNumbering()
, Settings::writeSettings()
, WebSettings::writeWebSettings()
, ContentTypes::writeContentTypes()
, Styles::writeStyles()
, Document::writeDocument()
all changed into write()
Writer\\Word2007\\Part\\DocProps
: Split into Writer\\Word2007\\Part\\DocPropsCore
and Writer\\Word2007\\Part\\DocPropsApp
Element\\Title::getBookmarkId()
replaced by Element\\Title::getRelationId()
Writer\\HTML::writeDocument
: Replaced by Writer\\HTML::getContent
"},{"location":"changes/0.x/0.11.0.html#miscellaneous","title":"Miscellaneous","text":" License: Change the project license from LGPL 2.1 into LGPL 3.0 - #211 Word2007 Writer: New Style\\Image
class - @ivanlanin Refactor: Replace static classes Footnotes
, Endnotes
, and TOC
with Collections
- @ivanlanin #206 QA: Reactivate phpcpd
and phpmd
on Travis - @ivanlanin Refactor: PHPMD recommendation: Change all get...
method that returns boolean
into is...
or has...
- @ivanlanin Docs: Create gh-pages branch for API documentation - @Progi1984 #154 QA: Add .scrutinizer.yml
and include composer.lock
for preparation to Scrutinizer - @ivanlanin #186 Writer: Refactor writer parts using composite pattern - @ivanlanin Docs: Show code quality and test code coverage badge on README Style: Change behaviour of set...
function of boolean properties; when none is defined, assumed true - @ivanlanin Shared: Unify PHP ZipArchive and PCLZip features into PhpWord ZipArchive - @ivanlanin Docs: Create VERSION file - @ivanlanin QA: Improve dan update requirement check in samples
folder - @ivanlanin "},{"location":"changes/0.x/0.11.1.html","title":"0.11.1 (2 June 2014)","text":"This is an immediate bugfix release for HTML reader.
HTML Reader: <p>
and header tags puts no output - @canyildiz @ivanlanin #257 "},{"location":"changes/0.x/0.12.0.html","title":"0.12.0 (3 January 2015)","text":"This release added form fields (textinput, checkbox, and dropdown), drawing shapes (arc, curve, line, polyline, rect, oval), and basic 2D chart (pie, doughnut, bar, line, area, scatter, radar) elements along with some new styles. Basic MsDoc reader is introduced.
"},{"location":"changes/0.x/0.12.0.html#features","title":"Features","text":" Element: Ability to add drawing shapes (arc, curve, line, polyline, rect, oval) using new Shape
element - @ivanlanin #123 Font: New scale
, spacing
, and kerning
property of font style - @ivanlanin Paragraph: Added shading to the paragraph style for full width shading - @lrobert #264 RTF Writer: Support for sections, margins, and borders - @ivanlanin #249 Section: Ability to set paper size, e.g. A4, A3, and Legal - @ivanlanin #249 General: New PhpWord::save()
method to encapsulate IOFactory
- @ivanlanin General: New Shared\\Converter
static class - @ivanlanin Chart: Basic 2D chart (pie, doughnut, bar, line, area, scatter, radar) - @ivanlanin #278 Chart: 3D charts and ability to set width and height - @ivanlanin FormField: Ability to add textinput, checkbox, and dropdown form elements - @ivanlanin #266 Setting: Ability to define document protection (readOnly, comments, trackedChanges, forms) - @ivanlanin Setting: Ability to remove [Compatibility Mode] text in the MS Word title bar - @ivanlanin SDT: Ability to add structured document tag elements (comboBox, dropDownList, date) - @ivanlanin Paragraph: Support for paragraph with borders - @ivanlanin #294 Word2007 Writer : Support for RTL - @Progi1984 #331 MsDOC Reader: Basic MsDOC Reader - @Progi1984 #23, #287 \"absolute\" horizontal and vertical positioning of Frame - @basjan #302 Add new-page function for PDF generation. For multiple PDF-backends - @chc88 #426 Report style options enumerated when style unknown - @h6w "},{"location":"changes/0.x/0.12.0.html#bugfixes","title":"Bugfixes","text":" Fix rare PclZip/realpath/PHP version problem - @andrew-kzoo #261 addHTML
encoding and ampersand fixes for PHP 5.3 - @bskrtich #270 Page breaks on titles and tables - @ivanlanin #274 Table inside vertical border does not rendered properly - @ivanlanin #280 add<elementName>
of container should be case insensitive, e.g. addToc
should be accepted, not only addTOC
- @ivanlanin #294 Fix specific borders (and margins) were not written correctly in word2007 writer - @pscheit #327 \"HTML is not a valid writer\" exception while running \"Sample_36_RTL.php\" - @RomanSyroeshko #340 \"addShape()\" magic method in AbstractContainer is mistakenly named as \"addObject()\" - @GMTA #356 Element\\Section::setPageSizeW()
and Element\\Section::setPageSizeH()
were mentioned in the docs but not implemented. Special Characters (ampersand) in Title break docx output - @RomanSyroeshko #401 <th>
tag is closed with </td>
tag: - @franzholz #438 "},{"location":"changes/0.x/0.12.0.html#deprecated","title":"Deprecated","text":" Element\\Link::getTarget()
replaced by Element\\Link::getSource()
Element\\Section::getSettings()
and Element\\Section::setSettings()
replaced by Element\\Section::getStyle()
and Element\\Section::setStyle()
Shared\\Drawing
and Shared\\Font
merged into Shared\\Converter
DocumentProperties
replaced by Metadata\\DocInfo
Template
replaced by TemplateProcessor
PhpWord->loadTemplate($filename)
"},{"location":"changes/0.x/0.12.0.html#miscellaneous","title":"Miscellaneous","text":" Docs: Add known issue on README
about requirement for temporary folder to be writable and update samples/index.php
for this requirement check - @ivanlanin #238 Docs: Correct elements.rst about Line - @chrissharkman #292 PclZip: Remove temporary file after used - @andrew-kzoo #265 Autoloader: Add the ability to set the autoloader options - @bskrtich #267 Element: Refactor elements to move set relation Id from container to element - @ivanlanin Introduced CreateTemporaryFileException, CopyFileException - @RomanSyroeshko Settings: added method to set user defined temporary directory - @RomanSyroeshko #310 Renamed Template
into TemplateProcessor
- @RomanSyroeshko #216 Reverted #51. All text escaping must be performed out of the library - @RomanSyroeshko #51 v
"},{"location":"changes/0.x/0.12.1.html","title":"0.12.1 (30 August 2015)","text":"Maintenance release. This release is focused primarily on TemplateProcessor
.
"},{"location":"changes/0.x/0.12.1.html#changes","title":"Changes","text":" Changed visibility of all private properties and methods of TemplateProcessor
to protected
. - @RomanSyroeshko #498 Improved performance of TemplateProcessor::setValue()
. - @RomanSyroeshko @nicoSWD #513 "},{"location":"changes/0.x/0.12.1.html#bugfixes","title":"Bugfixes","text":" Fixed issue with \"Access denied\" message while opening Sample_07_TemplateCloneRow.docx
and Sample_23_TemplateBlock.docx
result files on Windows platform. - @RomanSyroeshko @AshSat #532 Fixed PreserveText
element alignment in footer (see Sample_12_HeaderFooter.php
). - @RomanSyroeshko @SSchwaiger #495 "},{"location":"changes/0.x/0.13.0.html","title":"0.13.0 (31 July 2016)","text":"This release brings several improvements in TemplateProcessor
, automatic output escaping feature for OOXML, ODF, HTML, and RTF (turned off, by default). It also introduces constants for horizontal alignment options, and resolves some issues with PHP 7. Manual installation feature has been dropped since the release. Please, use Composer to install PHPWord.
"},{"location":"changes/0.x/0.13.0.html#added","title":"Added","text":" Introduced the \\PhpOffice\\PhpWord\\SimpleType\\Jc
simple type. - @RomanSyroeshko Introduced the \\PhpOffice\\PhpWord\\SimpleType\\JcTable
simple type. - @RomanSyroeshko Introduced writer for the \"Paragraph Alignment\" element (see \\PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment
). - @RomanSyroeshko Introduced writer for the \"Table Alignment\" element (see \\PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment
). - @RomanSyroeshko Supported indexed arrays in arguments of TemplateProcessor::setValue()
. - @RomanSyroeshko #618 Introduced automatic output escaping for OOXML, ODF, HTML, and RTF. To turn the feature on use phpword.ini
or \\PhpOffice\\PhpWord\\Settings
. - @RomanSyroeshko #483 Supported processing of headers and footers in TemplateProcessor::applyXslStyleSheet()
. - @RomanSyroeshko #335 "},{"location":"changes/0.x/0.13.0.html#changed","title":"Changed","text":" Improved error message for the case when autoload.php
is not found. - @RomanSyroeshko #371 Renamed the align
option of NumberingLevel
, Frame
, Table
, and Paragraph
styles into alignment
. - @RomanSyroeshko Improved performance of TemplateProcessor::setValue()
. - @kazitanvirahsan #614, #617 Fixed some HTML tags not rendering any output (p, header & table) - #257, #324 - @twmobius and @garethellis "},{"location":"changes/0.x/0.13.0.html#deprecated","title":"Deprecated","text":" getAlign
and setAlign
methods of NumberingLevel
, Frame
, Table
, and Paragraph
styles. Use the correspondent getAlignment
and setAlignment
methods instead. - @RomanSyroeshko left
, right
, and justify
alignment options for paragraphs (now are mapped to Jc::START
, Jc::END
, and Jc::BOTH
). - @RomanSyroeshko left
, right
, and justify
alignment options for tables (now are mapped to Jc::START
, Jc::END
, and Jc::CENTER
). - @RomanSyroeshko TCPDF
due to its limited HTML support. Use DomPDF
or MPDF
writer instead. - @RomanSyroeshko #399 "},{"location":"changes/0.x/0.13.0.html#removed","title":"Removed","text":" \\PhpOffice\\PhpWord\\Style\\Alignment
. Style properties, which previously stored instances of this class, now deal with strings. In each case set of available string values is defined by the correspondent simple type. - @RomanSyroeshko Manual installation support. Since the release we have dependencies on third party libraries, so installation via ZIP-archive download is not an option anymore. To install PHPWord use Composer. We also removed \\PhpOffice\\PhpWord\\Autoloader
, because the latter change made it completely useless. Autoloaders provided by Composer are in use now (see bootstrap.php
). - @RomanSyroeshko \\PhpOffice\\PhpWord\\Shared\\Drawing
replaced by \\PhpOffice\\Common\\Drawing
. - @Progi1984 #658 \\PhpOffice\\PhpWord\\Shared\\Font
. - @Progi1984 #658 \\PhpOffice\\PhpWord\\Shared\\String
replaced by \\PhpOffice\\Common\\Text
. - @Progi1984 @RomanSyroeshko #658 \\PhpOffice\\PhpWord\\Shared\\XMLReader
replaced by \\PhpOffice\\Common\\XMLReader
. - @Progi1984 #658 \\PhpOffice\\PhpWord\\Shared\\XMLWriter
replaced by \\PhpOffice\\Common\\XMLWriter
. - @Progi1984 @RomanSyroeshko #658 AbstractContainer::addMemoryImage()
. Use AbstractContainer::addImage()
instead. "},{"location":"changes/0.x/0.13.0.html#fixed","title":"Fixed","text":" Undefined property
error while reading MS-DOC documents. - @jaberu #610 Corrupted OOXML template issue in case when its names is broken immediately after $
sign. That case wasn't taken into account in implementation of TemplateProcessor::fixBrokenMacros()
. - @RomanSyroeshko @d-damien #548 "},{"location":"changes/0.x/0.14.0.html","title":"0.14.0 (29 Dec 2017)","text":"This release fixes several bugs and adds some new features. This version brings compatibility with PHP 7.0 & 7.1
"},{"location":"changes/0.x/0.14.0.html#added","title":"Added","text":" Possibility to control the footnote numbering -by @troosan in #1068 Image creation from string -by @troosan in #937 Introduced the \\PhpOffice\\PhpWord\\SimpleType\\NumberFormat
simple type. - @troosan Support for ContextualSpacing -by @postHawk in #1088 Possiblity to hide spelling and/or grammatical errors -by @troosan in #542 Possiblity to set default document language as well as changing the language for each text element -by @troosan in #1108 Support for Comments -by @troosan in #1067 Support for paragraph textAlignment -by @troosan in #1165 Add support for HTML underline tag <u>
in addHtml -by @zNightFalLz in #1186 Add support for HTML <br>
in addHtml - @anrikunby @troosan in #659 Allow to change cell width unit - guillaume-ro-fr #986 Allow to change the line height rule @troosan Implement PageBreak for odt writerby @cookiekiller in #863 #824 Allow to force an update of all fields on opening a document -by @troosan in #951 Allow adding a CheckBox in a TextRun -by @irond in #727 Add support for HTML img tag -by @srggroup in #934 Add support for password protection for docx -by @mariahaubner in #1019 "},{"location":"changes/0.x/0.14.0.html#fixed","title":"Fixed","text":" Loosen dependency to Zend Images are not being printed when generating PDF -by @hubertinio in #1074 #431 Fixed some PHP 7 warnings - @ likeuntomurphy #927 Fixed PHP 7.2 compatibility (renamed Object
class names to ObjectElement
) -by @SailorMax in #1185 Fixed Word 97 reader - @alsofronie @Benpxpxby @mario-rivera in #912 #920 #892 Fixed image loading over https -by @troosan in #988 Impossibility to set different even and odd page headers -by @troosan in #981 Fixed Word2007 reader where unnecessary paragraphs were being created -by @donghaobo in #1043 #620 Fixed Word2007 reader where margins were not being read correctly -by @slowprog in #885 #1008 Impossible to add element PreserveText in Section -by @rvanlaak in #452 Added missing options for numbering format -by @troosan in #1041 Fixed impossibility to set a different footer for first page -by @ctrlaltca in #1116,by @aoloe in #875 Fixed styles not being applied by HTML writer, better pdf output -by @sarke in #1047 #500 #1139 Fixed read docx error when document contains image from remote url -by @FBnil in #1173 #1176 Padded the $args array to remove error -by @kaigoh in #1150,by @reformed in #870 Fix incorrect image size between windows and mac -by @bskrtich in #874 Fix adding HTML table to document - @mogilvieby @arivanbastos in #324 Fix parsing on/off values (w:val=\"true|false|1|0|on|off\") -by @troosan in #1221 #1219 Fix error on Empty Dropdown Entry -by @ComputerTinker in #592 "},{"location":"changes/0.x/0.14.0.html#deprecated","title":"Deprecated","text":" PhpWord->getProtection(), get it from the settings instead PhpWord->getSettings()->getDocumentProtection(); "},{"location":"changes/0.x/0.15.0.html","title":"0.15.0 (14 Jul 2018)","text":""},{"location":"changes/0.x/0.15.0.html#added","title":"Added","text":" Parsing of align
HTML attribute -by @troosan in #1231 Parse formatting inside HTML lists - @troosanby @samimussbach in #1239 / #945 / #1215 / #508 Parsing of CSS direction
instruction, HTML lang
attribute, formatting inside table cell -by @troosan in #1273 / #1252 / #1254 Add support for Track changes @Cipby @troosan in #354 / #1262 Add support for fixed Table Layout @aoloe @ekopachby @troosan in #841 / #1276 Add support for Cell Spacing @dox07by @troosan in #1040 Add parsing of formatting inside lists @atomicalnetby @troosan in #594 Added support for Vertically Raised or Lowered Text (w:position) @anrikunby @troosan in #640 Add support for MACROBUTTON field @phryneasby @troosan in #1021 Add support for Hyphenationby @Trainmaster in #1282 (Document: autoHyphenation
, consecutiveHyphenLimit
, hyphenationZone
, doNotHyphenateCaps
, Paragraph: suppressAutoHyphens
) Added support for Floating Table Positioning (tblpPr)by @anrikun in #639 Added support for Image text wrapping distanceby @troosan in #1310 Added parsing of CSS line-height and text-indent in HTML readerby @troosan in #1316 Added the ability to enable gridlines and axislabels on chartsby @FrankMeyer in #576 Add support for table indent (tblInd)by @Trainmaster in #1343 Added parsing of internal links in HTML readerby @lalop in #1336 Several improvements to chartsby @JAEK-S in #1332 Add parsing of html image in base64 formatby @jgpATs2w in #1382 Added Support for Indentation & Tabs on RTF Writer.by @smaug1985 in #1405 Allows decimal numbers in HTML line-height styleby @jgpATs2w in #1413 "},{"location":"changes/0.x/0.15.0.html#fixed","title":"Fixed","text":" Fix reading of docx default style -by @troosan in #1238 Fix the size unit of when parsing html images -by @troosan in #1254 Fixed HTML parsing of nested lists -by @troosan in #1265 Save PNG alpha information when using remote images.by @samsullivan in #779 Fix parsing of <w:br/>
tag.by @troosan in #1274 Bookmark are not writton as internal link in html writerby @troosan in #1263 It should be possible to add a Footnote in a ListItemRunby @troosan in #1287 #1287 Fix colspan and rowspan for tables in HTML Writerby @mattbolt in #1292 Fix parsing of Heading and Title formating @troosanby @gthomas2 in #465 Fix Dateformat typo, fix hours casing, add Month-Day-Year formatsby @ComputerTinker in #591 Support reading of w:drawing for documents produced by word 2011+by @gthomas2 in #464 #1324 Fix missing column width in ODText writerby @potofcoffee in #413 Disable entity loader before parsing XML to avoid XXE injectionby @Tom4t0 in #1427 "},{"location":"changes/0.x/0.15.0.html#changed","title":"Changed","text":" Remove zend-stdlib dependencyby @Trainmaster in #1284 The default unit for \\PhpOffice\\PhpWord\\Style\\Image
changed from px
to pt
. "},{"location":"changes/0.x/0.15.0.html#miscellaneous","title":"Miscellaneous","text":" Drop GitHub pages, switch to coveralls for code coverage analysisby @czosel in #1360 "},{"location":"changes/0.x/0.16.0.html","title":"0.16.0 (30 dec 2018)","text":""},{"location":"changes/0.x/0.16.0.html#added","title":"Added","text":" Add getVariableCount method in TemplateProcessor.by @nicoder in #1272 Add setting Chart Title and Legend visibilityby @Tom-Magill in #1433 Add ability to pass a Style object in Section constructorby @ndench in #1416 Add support for hidden textby @Alexmg86 in #1527 Add support for setting images in TemplateProcessorby @SailorMax in #1170 Add \"Plain Text\" type to SDT (Structured Document Tags)by @morrisdj in #1541 Added possibility to index variables inside cloned block in TemplateProcessorby @JPBetley in #817 Added possibility to replace variables inside cloned block with values in TemplateProcessorby @DIDoS in #1392 "},{"location":"changes/0.x/0.16.0.html#fixed","title":"Fixed","text":" Fix regex in cloneBlock
functionby @nicoder in #1269 HTML Title Writer loses text when Title contains a TextRun instead a string.by @begnini in #1436 Fix regex in fixBrokenMacros, make it less greedy @MuriloSo @brainwoodby @yurii-sio2 in #1502 / #1345 240 twips are being added to line spacing, should not happen when using lineRule fixedby @troosan in #1509 / #1505 Adding table layout to the generated HTMLby @aarangara in #1441 Fix loading of Sharepoint documentby @Garrcomm in #1498 RTF writer: Round getPageSizeW and getPageSizeH to avoid decimalsby @Patrick64 in #1493 Fix parsing of Office 365 documentsby @Timanx in #1485 For RTF writers, sizes should should never have decimalsby @Samuel-BF in #1536 Style Name Parsing fails if document generated by a non-english word versionby @begnini in #1434 "},{"location":"changes/0.x/0.16.0.html#miscellaneous","title":"Miscellaneous","text":" Get rid of duplicated code in TemplateProcessorby @abcdmitry in #1161 "},{"location":"changes/0.x/0.17.0.html","title":"0.17.0 (01 oct 2019)","text":""},{"location":"changes/0.x/0.17.0.html#added","title":"Added","text":" Add methods setValuesFromArray and cloneRowFromArray to the TemplateProcessor @geraldb-nicat GH-670 Set complex type in template @troosan GH-1565 implement support for section vAlign @troosan GH-1569 ParseStyle for border-color @Gllrm0 GH-1551 Html writer auto invert text color @SailorMax GH-1387 Add RightToLeft table presentation. @troosan GH-1550 Add support for page vertical alignment. @troosan GH-672 GH-1569 Adding setNumId method for ListItem style @eweso GH-1329 Add support for basic fields in RTF writer. @Samuel-BF GH-1717 "},{"location":"changes/0.x/0.17.0.html#fixed","title":"Fixed","text":" Fix HTML border-color parsing. @troosan GH-1551 / GH-1570 Language::validateLocale should pass with locale 'zxx'. @efpapado GH-1558 can't align center vertically with the text @ter987 GH-672 fix parsing of border-color and add test @troosan GH-1570 TrackChange doesn't handle all return types of \\DateTime::createFromFormat(...) @superhaggis GH-1584 To support PreserveText inside sub container @bhattnishant GH-1637 No nested w:pPr elements in ListItemRun. @waltertamboer GH-1628 Ensure that entity_loader disable variable is re-set back to the original setting @seamuslee001 GH-1585 "},{"location":"changes/0.x/0.17.0.html#miscellaneous","title":"Miscellaneous","text":" Use embedded http server to test loading of remote images @troosan GH-1544 Change private to protected to be able extending class Html @SpinyMan GH-1646 Fix apt-get crash in Travis CI for PHP 5.3 @mdupont GH-1707 "},{"location":"changes/0.x/0.18.0.html","title":"0.18.0 (2021-02-12)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.0.html#enhancements","title":"Enhancements","text":" Add support for charts in template processor #2012 (@dbarzin) add/setting page element border style. #1986 (@emnabs) allow to use customized pdf library #1983 (@SailorMax) feat: Update addHtml to handle style inheritance #1965 (@Julien1138) Add parsing of Shape node values #1924 (@sven-ahrens) Allow to redefine TCPDF object #1907 (@SailorMax) Enhancements to addHTML parser #1902 (@lubosdz) Make Default Paper Configurable #1851 (@oleibman) Implement various missing features for the ODT writer #1796 (@oleibman) Added support for \"cloudConvert\" images #1794 (@ErnestStaug) Add support for several features for the RTF writer #1775 (@oleibman) Add font style for Field elements #1774 (@oleibman) Add support for ListItemRun in HTML writer #1766 (@stefan-91) Improvements in RTF writer #1755 (@oleibman) Allow a closure to be passed with image replacement tags #1716 (@mbardelmeijer) Add Option for Dynamic Chart Legend Position #1699 (@Stephan212) Add parsing of HTML checkbox input field #1832 (@Matze2010) "},{"location":"changes/0.x/0.18.0.html#bug-fixes","title":"Bug fixes","text":" Fix image stroke in libreoffice 7.x #1992 (@Adizbek) Fix deprecated warning for non-hexadecimal number #1988 (@Ciki) Fix limit not taken into account when adding image in template #1967 (@jsochor) Add null check when setComplexValue is not found #1936 (@YannikFirre) Some document have non-standard locale code #1824 (@ErnestStaug) Fixes PHPDoc @param and @return types for several Converter methods #1818 (@caugner) Update the regexp to avoid catastrophic backtracking #1809 (@juzser) Fix PHPUnit tests on develop branch #1771 (@mdupont) TemplateProcessor cloneBlock wrongly clones images #1763 (@alarai) "},{"location":"changes/0.x/0.18.0.html#miscellaneous","title":"Miscellaneous","text":" Compatibility with PHP 7.4, PHP 8.0 and migrate to Laminas Escaper #1946 (@liborm85) Remove legacy PHPOffice/Common package, fix PHP 8.0 compatibility #1996 (@liborm85) Improve Word2007 Test Coverage #1858 (@oleibman) Fix typo in docs. Update templates-processing.rst #1952 (@mnvx) Fix documentation and method name for FootnoteProperties #1776 (@mdupont) fix: documentation about paragraph indentation #1764 (@mdupont) Update templates-processing.rst #1745 (@igronus) Unused variables $rows, $cols in sample #1877 (@ThanasisMpalatsoukas) Add unit test for NumberingStyle #1744 (@Manunchik) Add unit test for PhpWord Settings #1743 (@Manunchik) Add unit test for Media elements #1742 (@Manunchik) Update templates processing docs #1729 (@hcdias) "},{"location":"changes/0.x/0.18.1.html","title":"0.18.1 (2021-03-08)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.1.html#bug-fixes","title":"Bug fixes","text":" Fix BC break in GH-1946. This package does not replace laminas/laminas-zendframework-bridge by @mussbach in #2032 "},{"location":"changes/0.x/0.18.2.html","title":"0.18.2 (2021-06-04)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.2.html#bug-fixes","title":"Bug fixes","text":" when adding image to relationship first check that the generated RID is actually unique by @tpv-ebben in #2063 Update chart, don't write 'c:overlap' if grouping is 'clustered' by @dfsd534 in #2052 Update Html parser to accept line-height:normal by @joelgo in #2041 Fix image border in Word2007 Writer for LibreOffice 7 by k@amilmmach in #2021 "},{"location":"changes/0.x/0.18.2.html#miscellaneous","title":"Miscellaneous","text":" Corrected namespace for Language class in docs by @MegaChriz in #2087 Added support for Garamond font by @artemkolotilkin in #2078 Add BorderStyle for Cell Style to documentation by @DShkrabak in #2090 "},{"location":"changes/0.x/0.18.3.html","title":"0.18.3 (2022-02-17)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.3.html#bug-fixes","title":"Bug fixes","text":""},{"location":"changes/0.x/0.7.0.html","title":"0.7.0 (28 Jan 2014)","text":"This is the first release after a long development hiatus in CodePlex. This release initialized ODT and RTF Writer, along with some other new features for the existing Word2007 Writer, e.g. tab, multiple header, rowspan and colspan. Composer and Travis were added.
"},{"location":"changes/0.x/0.7.0.html#features","title":"Features","text":" Implement RTF Writer - @Progi1984 #1 Implement ODT Writer - @Progi1984 #2 Word2007: Add rowspan and colspan to cells - @kaystrobach Word2007: Support for tab stops - @RLovelett Word2007: Support Multiple headers - @RLovelett Word2007: Wrapping Styles to Images - @gabrielbull Added support for image wrapping style - @gabrielbull "},{"location":"changes/0.x/0.7.0.html#bugfixes","title":"Bugfixes","text":" \"Warning: Invalid error type specified in ...\\PHPWord.php on line 226\" is thrown when the specified template file is not found - @RomanSyroeshko #32 PHPWord_Shared_String.IsUTF8 returns FALSE for Cyrillic UTF-8 input - @RomanSyroeshko #34 Temporary files naming logic in PHPWord_Template can lead to a collision - @RomanSyroeshko #38 "},{"location":"changes/0.x/0.7.0.html#miscellaneous","title":"Miscellaneous","text":" Add superscript/subscript styling in Excel2007 Writer - @MarkBaker add indentation support to paragraphs - @deds Support for Composer - @Progi1984 #27 Basic CI with Travis - @Progi1984 Added PHPWord_Exception and exception when could not copy the template - @Progi1984 IMPROVED: Moved examples out of Classes directory - @Progi1984 IMPROVED: Advanced string replace in setValue for Template - @Esmeraldo #49 "},{"location":"changes/0.x/0.8.0.html","title":"0.8.0 (15 Mar 2014)","text":"This release merged a lot of improvements from the community. Unit tests introduced in this release and has reached 90% code coverage.
"},{"location":"changes/0.x/0.8.0.html#features","title":"Features","text":" Template: Permit to save a template generated as a file (PHPWord_Template::saveAs()) - @RomanSyroeshko #56, #57 Word2007: Support sections page numbering - @gabrielbull Word2007: Added line height methods to mirror the line height settings in Word in the paragraph styling - @gabrielbull Word2007: Added support for page header & page footer height - @JillElaine #5 General: Add ability to manage line breaks after image insertion - @bskrtich #6, #66, #84 Template: Ability to limit number of replacements performed by setValue() method of Template class - @RomanSyroeshko #52, #53, #85 Table row: Repeat as header row & allow row to break across pages - @ivanlanin #48, #86 Table: Table width in percentage - @ivanlanin #48, #86 Font: Superscript and subscript - @ivanlanin #48, #86 Paragraph: Hanging paragraph - @ivanlanin #48, #86 Section: Multicolumn and section break - @ivanlanin #48, #86 Template: Ability to apply XSL style sheet to Template - @RomanSyroeshko #46, #47, #83 General: PHPWord_Shared_Font::pointSizeToTwips() converter - @ivanlanin #87 Paragraph: Ability to define normal paragraph style with PHPWord::setNormalStyle() - @ivanlanin #87 Paragraph: Ability to define parent style (basedOn) and style for following paragraph (next) - @ivanlanin #87 Clone table rows on the fly when using a template document - @jeroenmoors #44, #88 Initial addition of basic footnote support - @deds #16 Paragraph: Ability to define paragraph pagination: widow control, keep next, keep lines, and page break before - @ivanlanin #92 General: PHPWord_Style_Font refactoring - @ivanlanin #93 Font: Use points instead of halfpoints internally. Conversion to halfpoints done during XML Writing. - @ivanlanin #93 Paragraph: setTabs() function - @ivanlanin #92 General: Basic support for TextRun on ODT and RTF - @ivanlanin #99 Reader: Basic Reader for Word2007 - @ivanlanin #104 TextRun: Allow Text Break in Text Run - @bskrtich #109 General: Support for East Asian fontstyle - @jhfangying #111, #118 Image: Use exif_imagetype to check image format instead of extension name - @gabrielbull #114 General: Setting for XMLWriter Compatibility option - @bskrtich #103 MemoryImage: Allow remote image when allow_url_open = on - @ivanlanin #122 TextBreak: Allow font and paragraph style for text break - @ivanlanin #18 "},{"location":"changes/0.x/0.8.0.html#bugfixes","title":"Bugfixes","text":" Fixed bug with cell styling - @gabrielbull Fixed bug list items inside of cells - @gabrielbull Adding a value that contains \"&\" in a template breaks it - @SiebelsTim #51 Example in README.md is broken - @Progi1984 #89 General: PHPWord_Shared_Drawing::centimetersToPixels() conversion - @ivanlanin #94 Footnote: Corrupt DOCX reported by MS Word when sections > 1 and not every sections have footnote - @ivanlanin #125 "},{"location":"changes/0.x/0.8.0.html#miscellaneous","title":"Miscellaneous","text":""},{"location":"changes/0.x/0.8.1.html","title":"0.8.1 (17 Mar 2014)","text":"This is a bugfix release for image detection functionality.
Added fallback for computers that do not have exif_imagetype - @bskrtich, @gabrielbull "},{"location":"changes/0.x/0.9.0.html","title":"0.9.0 (26 Mar 2014)","text":"This release marked the transformation to namespaces (PHP 5.3+).
"},{"location":"changes/0.x/0.9.0.html#features","title":"Features","text":" Image: Ability to use remote or GD images using addImage()
on sections, headers, footer, cells, and textruns - @ivanlanin Header: Ability to use remote or GD images using addWatermark()
- @ivanlanin "},{"location":"changes/0.x/0.9.0.html#bugfixes","title":"Bugfixes","text":" Preserve text doesn't render correctly when the text is not the first word, e.g. 'Page {PAGE}' - @ivanlanin "},{"location":"changes/0.x/0.9.0.html#miscellaneous","title":"Miscellaneous","text":" Move documentation to Read The Docs - by @Progi1984 & @ivanlanin in #82 Reorganize and redesign samples folder - @ivanlanin #137 Use PhpOffice\\PhpWord
namespace for PSR compliance - @RomanSyroeshko @gabrielbull #159, #58 Restructure folders and change folder name Classes
to src
and Tests
to test
for PSR compliance - @RomanSyroeshko @gabrielbull Compliance to phpDocumentor - @ivanlanin Merge Style\\TableFull into Style\\Table. Style\\TableFull is deprecated - @ivanlanin #160 Merge Section\\MemoryImage into Section\\Image. Section\\Image is deprecated - @ivanlanin #160 "},{"location":"changes/0.x/0.9.1.html","title":"0.9.1 (27 Mar 2014)","text":"This is a bugfix release for PSR-4 compatibility.
Fixed PSR-4 composer autoloader - @AntonTyutin "},{"location":"changes/1.x/1.0.0.html","title":"1.0.0 (2022-11-15)","text":"Full Changelog
"},{"location":"changes/1.x/1.0.0.html#breaking-change","title":"BREAKING CHANGE","text":"Most deprecated things were dropped. See details in https://github.com/PHPOffice/PHPWord/commit/b9f1151bc6f90c276153c3c9dca10a5fc7f355fb.
"},{"location":"changes/1.x/1.0.0.html#dropped-classes","title":"Dropped classes:","text":" PhpOffice\\PhpWord\\Template
"},{"location":"changes/1.x/1.0.0.html#dropped-constants","title":"Dropped constants:","text":" PhpOffice\\PhpWord\\Style\\Font::UNDERLINE_DOTHASH
PhpOffice\\PhpWord\\Style\\Font::UNDERLINE_DOTHASHHEAVY
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_TOP
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_CENTER
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_BOTTOM
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_BOTH
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_DOT
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_UNDERSCORE
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_LINE
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_NONE
PhpOffice\\PhpWord\\Style\\Table::WIDTH_AUTO
PhpOffice\\PhpWord\\Style\\Table::WIDTH_PERCENT
PhpOffice\\PhpWord\\Style\\Table::WIDTH_TWIP
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_NAME
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_SIZE
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_COLOR
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_CONTENT_TYPE
"},{"location":"changes/1.x/1.0.0.html#dropped-methods","title":"Dropped methods:","text":" PhpOffice\\PhpWord\\Ekement\\AbstractContainer::createTextRun()
PhpOffice\\PhpWord\\Ekement\\AbstractContainer::createFootnote()
PhpOffice\\PhpWord\\Ekement\\Footnote::getReferenceId()
PhpOffice\\PhpWord\\Ekement\\Footnote::setReferenceId()
PhpOffice\\PhpWord\\Ekement\\Image::getIsWatermark()
PhpOffice\\PhpWord\\Ekement\\Image::getIsMemImage()
PhpOffice\\PhpWord\\Ekement\\Link::getTarget()
PhpOffice\\PhpWord\\Ekement\\Link::getLinkSrc()
PhpOffice\\PhpWord\\Ekement\\Link::getLinkName()
PhpOffice\\PhpWord\\Ekement\\OLEObject::getObjectId()
PhpOffice\\PhpWord\\Ekement\\OLEObject::setObjectId()
PhpOffice\\PhpWord\\Ekement\\Section::getFootnotePropoperties()
PhpOffice\\PhpWord\\Ekement\\Section::setSettings()
PhpOffice\\PhpWord\\Ekement\\Section::getSettings()
PhpOffice\\PhpWord\\Ekement\\Section::createHeader()
PhpOffice\\PhpWord\\Ekement\\Section::createFooter()
PhpOffice\\PhpWord\\Ekement\\Section::getFooter()
PhpOffice\\PhpWord\\Media::addSectionMediaElement()
PhpOffice\\PhpWord\\Media::addSectionLinkElement()
PhpOffice\\PhpWord\\Media::getSectionMediaElements()
PhpOffice\\PhpWord\\Media::countSectionMediaElements()
PhpOffice\\PhpWord\\Media::addHeaderMediaElement()
PhpOffice\\PhpWord\\Media::countHeaderMediaElements()
PhpOffice\\PhpWord\\Media::getHeaderMediaElements()
PhpOffice\\PhpWord\\Media::addFooterMediaElement()
PhpOffice\\PhpWord\\Media::countFooterMediaElements()
PhpOffice\\PhpWord\\Media::getFooterMediaElements()
PhpOffice\\PhpWord\\PhpWord::getProtection()
PhpOffice\\PhpWord\\PhpWord::loadTemplate()
PhpOffice\\PhpWord\\PhpWord::createSection()
PhpOffice\\PhpWord\\PhpWord::getDocumentProperties()
PhpOffice\\PhpWord\\PhpWord::setDocumentProperties()
PhpOffice\\PhpWord\\Reader\\AbstractReader::getReadDataOnly()
PhpOffice\\PhpWord\\Settings::getCompatibility()
PhpOffice\\PhpWord\\Style\\AbstractStyle::setArrayStyle()
PhpOffice\\PhpWord\\Style\\Cell::getDefaultBorderColor()
PhpOffice\\PhpWord\\Style\\Font::getBold()
PhpOffice\\PhpWord\\Style\\Font::getItalic()
PhpOffice\\PhpWord\\Style\\Font::getSuperScript()
PhpOffice\\PhpWord\\Style\\Font::getSubScript()
PhpOffice\\PhpWord\\Style\\Font::getStrikethrough()
PhpOffice\\PhpWord\\Style\\Font::getParagraphStyle()
PhpOffice\\PhpWord\\Style\\Frame::getAlign()
PhpOffice\\PhpWord\\Style\\Frame::setAlign()
PhpOffice\\PhpWord\\Style\\NumberingLevel::getAlign()
PhpOffice\\PhpWord\\Style\\NumberingLevel::setAlign()
PhpOffice\\PhpWord\\Style\\Paragraph::getAlign()
PhpOffice\\PhpWord\\Style\\Paragraph::setAlign()
PhpOffice\\PhpWord\\Style\\Paragraph::getWidowControl()
PhpOffice\\PhpWord\\Style\\Paragraph::getKeepNext()
PhpOffice\\PhpWord\\Style\\Paragraph::getKeepLines()
PhpOffice\\PhpWord\\Style\\Paragraph::getPageBreakBefore()
PhpOffice\\PhpWord\\Style\\Row::getTblHeader()
PhpOffice\\PhpWord\\Style\\Row::isTblHeader()
PhpOffice\\PhpWord\\Style\\Row::getCantSplit()
PhpOffice\\PhpWord\\Style\\Row::getExactHeight()
PhpOffice\\PhpWord\\Style\\Spacing::getRule()
PhpOffice\\PhpWord\\Style\\Spacing::setRule()
PhpOffice\\PhpWord\\Style\\Table::getAlign()
PhpOffice\\PhpWord\\Style\\Table::setAlign()
PhpOffice\\PhpWord\\Writer\\AbstractWriter::getUseDiskCaching()
PhpOffice\\PhpWord\\Writer\\HTML::writeDocument()
"},{"location":"changes/1.x/1.0.0.html#bug-fixes","title":"Bug fixes","text":" Multiple PHP 8.1 fixes loadConfig
returns config that was actually applied HTML Reader : Override inline style on HTML attribute for table HTML Reader : Use border
attribute for tables HTML Reader : Style page-break-after in paragraph HTML Reader : Heading in Text Run is not allowed "},{"location":"changes/1.x/1.0.0.html#miscellaneous","title":"Miscellaneous","text":" Drop support for PHP 7.0 and older "},{"location":"changes/1.x/1.1.0.html","title":"1.1.0 (2023-05-30)","text":"Full Changelog
"},{"location":"changes/1.x/1.1.0.html#enhancements","title":"Enhancements","text":" Introduce deleteRow() method for TemplateProcessor HTML Reader: Add basic support for CSS Style Tag Allow customizing macro syntax in TemplateProcessor Add background color support for textboxes Add softhyphen support to word reader Add support table row height when importing HTML Add support for fractional font sizes Added image quality support, with the maximum quality as default Support for reading nested tables "},{"location":"changes/1.x/1.1.0.html#bug-fixes","title":"Bug fixes","text":" DOCX reader: Read empty vmerge Fixed setting width of Cell Style "},{"location":"changes/1.x/1.1.0.html#miscellaneous","title":"Miscellaneous","text":" master
is the new default branch "},{"location":"changes/1.x/1.2.0.html","title":"1.2.0","text":"Full Changelog
"},{"location":"changes/1.x/1.2.0.html#enhancements","title":"Enhancements","text":" Word2007 Reader/Writer : Added noWrap table cell property by @kernusr in GH-2359 HTML Reader : Support for font-variant: small-caps
by @cambraca in GH-2117 Improved TextDirection for styling a cell by @terryzwt in GH-2429 Word2007 Reader : Added option to disable loading images by @aelliott1485 in GH-2450 HTML Writer : Added border-spacing to default styles for table by @kernusr in GH-2451 Word2007 Reader : Support for table cell borders and margins by @kernusr in GH-2454 PDF Writer : Add config for defining the default font by @MikeMaldini in #2262 & #2468 Word2007 Reader : Added support for Comments by @shaedrich in #2161 & #2469 Word2007 Reader/Writer: Permit book-fold printing by @potofcoffee in #2225 & #2470 Word2007 Writer : Add PageNumber to TOC by @jet-desk in #1652 & #2471 Word2007 Reader/Writer + ODText Reader/Writer : Add Element Formula in by @Progi1984 in #2477 Add Support for Various Missing Features in HTML Writer by @oleibman in #2475 Fixed addHTML (text-align:right in html is not handled correctly) in #2467 HTML Writer : Added ability to specify generic fallback font HTML Writer : Added ability to specify handling of whitespace HTML Writer : Added support for Table Border style, color, and size HTML Writer : Added support for empty paragraphs (Word writer permits, browsers generally suppress) HTML Writer : Paragraph style should support indentation, line-height, page-break-before HTML Writer : Removed margin-top/bottom when spacing is null in Paragraph style HTML Writer : Added default paragraph style to all paragraphs, as well as class Normal HTML Writer : Use css @page and page declarations for sections HTML Writer : Wrap sections in div, with page break before each (except first) PDF Writer : Added support for PageBreak PDF Writer : Added callback for modifying the HTML Added Support for Language, both for document overall and individual text elements Template : Set a checkbox by @nxtpge in #2509 ODText / RTF / Word2007 Writer : Add field FILENAME by @milkyway-git in #2510 ODText Reader : Improve Section Reader by @oleibman in #2507 "},{"location":"changes/1.x/1.2.0.html#bug-fixes","title":"Bug fixes","text":" Fixed wrong mimetype for docx files by @gamerlv in GH-2416 Word2007 Reader : Read hyperlingks in headings by @hannesdorn in GH-2433 PclZip : strtr using empty string by @spl1nes in GH-2432 Fixed PHP 8.2 deprecated about Allow access to an undefined property by @DAdq26 in GH-2440 Template Processor : Fixed choose dimention for Float Value by @gdevilbat in GH-2449 HTML Parser : Fix image parsing from url without extension by @JokubasR in GH-2459 Word2007 Reader : Fixed reading of Office365 DocX file by @filippotoso & @lfglopes in #2506 Word2007 Reader : Check for null on $fontDefaultStyle by @spatialfree in #2513 "},{"location":"changes/1.x/1.2.0.html#miscellaneous","title":"Miscellaneous","text":" Added PHPStan by @PowerKiKi in GH-2405 Bump symfony/process from 4.4.44 to 5.4.26 by @dependabot in GH-2431 Bump phpunit/phpunit from 9.6.8 to 9.6.10 by @dependabot in GH-2430 Added Coveralls.io by @Progi1984 in GH-2452 Added support for PHP 8.2 & PHP 8.3 by @Progi1984 in GH-2453 Moved documention from ReadTheDocs to MkDocs & Github Pages by @Progi1984 in GH-2465 Bump phpstan/phpstan-phpunit from 1.3.13 to 1.3.14 by @dependabot in #2457 Bump symfony/process from 5.4.26 to 5.4.28 by @dependabot in #2456 Bump phpunit/phpunit from 9.6.10 to 9.6.11 by @dependabot in #2455 Remove deprecated utf8_encode in PHP 8.2 by @mhcwebdesign in #2447 & #2472 Bump mpdf/mpdf from 8.1.6 to 8.2.0 by @dependabot in #2480 Bump phpunit/phpunit from 9.6.11 to 9.6.13 by @dependabot in #2481 Bump tecnickcom/tcpdf from 6.6.2 to 6.6.5 by @dependabot in #2482 Bump phpmd/phpmd from 2.13.0 to 2.14.1 by @dependabot in #2483 Bump phpstan/phpstan-phpunit from 1.3.14 to 1.3.15 by @dependabot in #2494 "},{"location":"changes/1.x/1.2.0.html#bc-breaks","title":"BC Breaks","text":" Removed dependency laminas/laminas-escaper
Unintended Break TemplateProcessor Does Not Persist File After Destruct. #2539 To be fixed by [#2545](https://github.com/PHPOffice/PHPWord/pull/2545 "},{"location":"changes/1.x/1.3.0.html","title":"1.3.0","text":"Full Changelog
"},{"location":"changes/1.x/1.3.0.html#enhancements","title":"Enhancements","text":" IOFactory : Added extractVariables method to extract variables from a document @sibalonat in #2515 PDF Writer : Documented how to specify a PDF renderer, when working with the PDF writer, as well as the three available choices by @settermjd in #2642 Word2007 Reader: Support for Paragraph Border Style by @damienfa in #2651 Word2007 Writer: Support for field REF by @crystoline in #2652 Word2007 Reader : Support for FormFields by @vincentKool in #2653 RTF Writer : Support for Table Border Style fixing #345 by @Progi1984 in #2656 Word2007 Reader: Support the page break () by @stanolacko in #2662 MsDoc Reader: Support for UTF-8 characters by [@Progi1984] fixing #881, #1454, #1817, #1927, #2383, #2565 in #2664 Word2007 Writer: Added support for multiples comment for the same text by @rodrigoq fixing #2109 in #2665 "},{"location":"changes/1.x/1.3.0.html#bug-fixes","title":"Bug fixes","text":" MsDoc Reader : Correct Font Size Calculation by @oleibman fixing #2526 in #2531 Html Reader : Process Titles as Headings not Paragraphs @0b10011 and @oleibman Issue #1692 PR #2533 Generate Table Cell if Row Doesn't Have Any @oleibman fixing #2505 in #2516 TemplateProcessor Persist File After Destruct @oleibman fixing #2539 in #2545 TemplateProcessor Destructor Problem with Php7 @oleibman fixing #2548 in #2554 bug: TemplateProcessor fix multiline values @gimler fixing #268, #2323 and #2486 in #2522 32-bit Problem in PasswordEncoder @oleibman fixing #2550 in #2551 Typo : Fix hardcoded macro chars in TemplateProcessor method @glafarge in #2618 XML Reader : Prevent fatal errors when opening corrupt files or \"doc\" files @mmcev106 in #2626 Documentation : Updated Comment element by @laminga in #2650 HTML Reader : Read width & height attributes in points fixing #2589 by @Progi1984 in #2654 Template Processor : Fixed bad naming of variables fixing #2586 by @Progi1984 in #2655 Word2007 Writer : Fix first footnote appearing as separator #2634 by @jacksleight in #2635 Template Processor : Fixed images with transparent backgrounds displaying a white background by @ElwynVdb in #2638 HTML Writer : Fixed rowspan for tables by @andomiell in #2659 Word2007 Writer : Fixed StrikeThrough property by @noec764 fixing #1722 & #1693 in #2661 HTML Reader : Fixed link without href by @asmundstavdahl fixing #1562 in #2663 "},{"location":"changes/1.x/1.3.0.html#miscellaneous","title":"Miscellaneous","text":" Bump dompdf/dompdf from 2.0.3 to 2.0.4 by @dependabot in #2530 Bump phpunit/phpunit from 9.6.13 to 9.6.14 by @dependabot in #2519 Bump mpdf/mpdf from 8.2.0 to 8.2.2 by @dependabot in #2518 Bump phpmd/phpmd from 2.14.1 to 2.15.0 by @dependabot in #2538 Bump phpunit/phpunit from 9.6.14 to 9.6.15 by @dependabot in #2537 Bump symfony/process from 5.4.28 to 5.4.34 by @dependabot in #2536 Allow rgb() when converting Html by @oleibman fixing #2508 in #2512 Improved Issue Template by @Progi1984 in #2609 Bump phpoffice/math from 0.1.0 to 0.2.0 by @Progi1984 fixing #2559 in #2645 Bump tecnickcom/tcpdf from 6.6.5 to 6.7.5 by @dependabot in #2646 Bump mpdf/mpdf from 8.2.2 to 8.2.4 by @dependabot in #2647 Bump phenx/php-svg-lib from 0.5.1 to 0.5.4 by @dependabot in #2649 Bump phpstan/phpstan-phpunit from 1.3.15 to 1.4.0 by @dependabot in #2648 "},{"location":"changes/1.x/1.3.0.html#bc-breaks","title":"BC Breaks","text":""},{"location":"changes/1.x/1.4.0.html","title":"1.4.0 (WIP)","text":"Full Changelog
"},{"location":"changes/1.x/1.4.0.html#enhancements","title":"Enhancements","text":" Writer ODText: Support for ListItemRun by @Progi1984 fixing #2159, #2620 in #2669 Writer HTML: Support for vAlign in Tables by @SpraxDev in #2675 "},{"location":"changes/1.x/1.4.0.html#bug-fixes","title":"Bug fixes","text":" Writer ODText: Support for images inside a textRun by @Progi1984 fixing #2240 in #2668 "},{"location":"changes/1.x/1.4.0.html#miscellaneous","title":"Miscellaneous","text":" Bump dompdf/dompdf from 2.0.4 to 3.0.0 by @dependabot fixing #2621 in #2666 "},{"location":"changes/1.x/1.4.0.html#bc-breaks","title":"BC Breaks","text":""},{"location":"usage/containers.html","title":"Containers","text":"Containers are objects where you can put elements (texts, lists, tables, etc). There are 3 main containers, i.e. sections, headers, and footers.There are 3 elements that can also act as containers, i.e. textruns, table cells, and footnotes.
"},{"location":"usage/containers.html#sections","title":"Sections","text":"Every visible element in word is placed inside of a section. To create a section, use the following code:
<?php\n\n$section = $phpWord->addSection($sectionStyle);\n
The $sectionStyle
is an optional associative array that sets the section. Example:
<?php\n\n$sectionStyle = array(\n 'orientation' => 'landscape',\n 'marginTop' => 600,\n 'colsNum' => 2,\n);\n
"},{"location":"usage/containers.html#page-number","title":"Page number","text":"You can change a section page number by using the pageNumberingStart
style of the section.
<?php\n\n// Method 1\n$section = $phpWord->addSection(array('pageNumberingStart' => 1));\n\n// Method 2\n$section = $phpWord->addSection();\n$section->getStyle()->setPageNumberingStart(1);\n
"},{"location":"usage/containers.html#multicolumn","title":"Multicolumn","text":"You can change a section layout to multicolumn (like in a newspaper) by using the breakType
and colsNum
style of the section.
<?php\n\n// Method 1\n$section = $phpWord->addSection(array('breakType' => 'continuous', 'colsNum' => 2));\n\n// Method 2\n$section = $phpWord->addSection();\n$section->getStyle()->setBreakType('continuous');\n$section->getStyle()->setColsNum(2);\n
"},{"location":"usage/containers.html#line-numbering","title":"Line numbering","text":"You can apply line numbering to a section by using the lineNumbering
style of the section.
<?php\n\n// Method 1\n$section = $phpWord->addSection(array('lineNumbering' => array()));\n\n// Method 2\n$section = $phpWord->addSection();\n$section->getStyle()->setLineNumbering(array());\n
Below are the properties of the line numbering style.
start
Line numbering starting value increment
Line number increments distance
Distance between text and line numbering in twip restart
Line numbering restart setting continuous|newPage|newSection "},{"location":"usage/containers.html#headers","title":"Headers","text":"Each section can have its own header reference. To create a header use the addHeader
method:
<?php\n\n$header = $section->addHeader();\n
Be sure to save the result in a local object. You can use all elements that are available for the footer. See \"Footer\" section for detail. Additionally, only inside of the header reference you can add watermarks or background pictures. See \"Watermarks\" section.
You can pass an optional parameter to specify where the header/footer should be applied, it can be
Footer::AUTO
default, all pages except if overridden by first or even Footer::FIRST
each first page of the section Footer::EVEN
each even page of the section. Will only be applied if the evenAndOddHeaders is set to true in phpWord->settings To change the evenAndOddHeaders use the getSettings
method to return the Settings object, and then call the setEvenAndOddHeaders
method:
<?php\n\n$phpWord->getSettings()->setEvenAndOddHeaders(true);\n
"},{"location":"usage/containers.html#footers","title":"Footers","text":"Each section can have its own footer reference. To create a footer, use the addFooter
method:
<?php\n\n$footer = $section->addFooter();\n
Be sure to save the result in a local object to add elements to a footer. You can add the following elements to footers:
Texts addText
and createTextrun
Text breaks Images Tables Preserve text See the \"Elements\" section for the detail of each elements.
"},{"location":"usage/containers.html#other-containers","title":"Other containers","text":"Textruns, table cells, and footnotes are elements that can also act as containers. See the corresponding \"Elements\" section for the detail of each elements.
"},{"location":"usage/introduction.html","title":"Introduction","text":""},{"location":"usage/introduction.html#basic-example","title":"Basic example","text":"The following is a basic example of the PHPWord library. More examples are provided in the samples folder.
<?php\nrequire_once 'bootstrap.php';\n\n// Creating the new document...\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n\n/* Note: any element you append to a document must reside inside of a Section. */\n\n// Adding an empty Section to the document...\n$section = $phpWord->addSection();\n// Adding Text element to the Section having font styled by default...\n$section->addText(\n '\"Learn from yesterday, live for today, hope for tomorrow. '\n . 'The important thing is not to stop questioning.\" '\n . '(Albert Einstein)'\n);\n\n/*\n * Note: it's possible to customize font style of the Text element you add in three ways:\n * - inline;\n * - using named font style (new font style object will be implicitly created);\n * - using explicitly created font style object.\n */\n\n// Adding Text element with font customized inline...\n$section->addText(\n '\"Great achievement is usually born of great sacrifice, '\n . 'and is never the result of selfishness.\" '\n . '(Napoleon Hill)',\n array('name' => 'Tahoma', 'size' => 10)\n);\n\n// Adding Text element with font customized using named font style...\n$fontStyleName = 'oneUserDefinedStyle';\n$phpWord->addFontStyle(\n $fontStyleName,\n array('name' => 'Tahoma', 'size' => 10, 'color' => '1B2232', 'bold' => true)\n);\n$section->addText(\n '\"The greatest accomplishment is not in never falling, '\n . 'but in rising again after you fall.\" '\n . '(Vince Lombardi)',\n $fontStyleName\n);\n\n// Adding Text element with font customized using explicitly created font style object...\n$fontStyle = new \\PhpOffice\\PhpWord\\Style\\Font();\n$fontStyle->setBold(true);\n$fontStyle->setName('Tahoma');\n$fontStyle->setSize(13);\n$myTextElement = $section->addText('\"Believe you can and you\\'re halfway there.\" (Theodor Roosevelt)');\n$myTextElement->setFontStyle($fontStyle);\n\n// Saving the document as OOXML file...\n$objWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'Word2007');\n$objWriter->save('helloWorld.docx');\n\n// Saving the document as ODF file...\n$objWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'ODText');\n$objWriter->save('helloWorld.odt');\n\n// Saving the document as HTML file...\n$objWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'HTML');\n$objWriter->save('helloWorld.html');\n\n/* Note: we skip RTF, because it's not XML-based and requires a different example. */\n/* Note: we skip PDF, because \"HTML-to-PDF\" approach is used to create PDF documents. */\n
"},{"location":"usage/introduction.html#phpword-settings","title":"PHPWord Settings","text":"The PhpOffice\\PhpWord\\Settings
class provides some options that will affect the behavior of PHPWord. Below are the options.
"},{"location":"usage/introduction.html#xml-writer-compatibility","title":"XML Writer compatibility","text":"This option sets XMLWriter::setIndent and XMLWriter::setIndentString. The default value of this option is true
(compatible), which is required for OpenOffice to render OOXML document correctly. You can set this option to false
during development to make the resulting XML file easier to read.
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setCompatibility(false);\n
"},{"location":"usage/introduction.html#zip-class","title":"Zip class","text":"By default, PHPWord uses Zip extension to deal with ZIP compressed archives and files inside them. If you can't have Zip extension installed on your server, you can use pure PHP library alternative, `PclZip``, which is included in PHPWord.
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setZipClass(\\PhpOffice\\PhpWord\\Settings::PCLZIP);\n
"},{"location":"usage/introduction.html#output-escaping","title":"Output escaping","text":"Writing documents of some formats, especially XML-based, requires correct output escaping. Without it your document may become broken when you put special characters like ampersand, quotes, and others in it.
Escaping can be performed in two ways: outside of the library by a software developer and inside of the library by built-in mechanism. By default, the built-in mechanism is disabled for backward compatibility with versions prior to v0.13.0. To turn it on set outputEscapingEnabled
option to true
in your PHPWord configuration file or use the following instruction at runtime:
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setOutputEscapingEnabled(true);\n
"},{"location":"usage/introduction.html#default-paper","title":"Default Paper","text":"By default, all sections of the document will print on A4 paper. You can alter the default paper by using the following function:
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setDefaultPaper('Letter');\n
"},{"location":"usage/introduction.html#default-font","title":"Default font","text":"By default, every text appears in Arial 10 point. You can alter the default font by using the following two functions:
<?php\n\n$phpWord->setDefaultFontName('Times New Roman');\n$phpWord->setDefaultFontSize(12);\n
"},{"location":"usage/introduction.html#document-settings","title":"Document settings","text":"Settings for the generated document can be set using $phpWord->getSettings()
"},{"location":"usage/introduction.html#magnification-setting","title":"Magnification Setting","text":"The default zoom value is 100 percent. This can be changed either to another percentage
<?php\n\n$phpWord->getSettings()->setZoom(75);\n
Or to predefined values fullPage
, bestFit
, textFit
<?php\n\n$phpWord->getSettings()->setZoom(Zoom::BEST_FIT);\n
"},{"location":"usage/introduction.html#mirroring-the-page-margins","title":"Mirroring the Page Margins","text":"Use mirror margins to set up facing pages for double-sided documents, such as books or magazines.
<?php\n\n$phpWord->getSettings()->setMirrorMargins(true);\n
Don't forget to set both paper size and page size
For example, to print a document on A4 paper (landscape) and fold it into A5 pages (portrait), use this section style:
<?php\n\nuse PhpOffice\\PhpWord\\Shared\\Converter;\n\n$phpWord->getSettings()->setMirrorMargins(true);\n$phpWord->addSection([\n 'paperSize' => 'A4',\n 'orientation' => 'landscape',\n 'pageSizeW' => Converter::cmToTwip(14.85),\n 'pageSizeH' => Converter::cmToTwip(21),\n]);\n
"},{"location":"usage/introduction.html#printing-as-folded-booklet","title":"Printing as folded booklet","text":"Use book-fold printing to set up documents to be printed as foldable pages.
<?php\n\n$phpWord->getSettings()->setBookFoldPrinting(true);\n
"},{"location":"usage/introduction.html#spelling-and-grammatical-checks","title":"Spelling and grammatical checks","text":"By default spelling and grammatical errors are shown as soon as you open a word document. For big documents this can slow down the opening of the document. You can hide the spelling and/or grammatical errors with:
<?php\n\n$phpWord->getSettings()->setHideGrammaticalErrors(true);\n$phpWord->getSettings()->setHideSpellingErrors(true);\n
You can also specify the status of the spell and grammar checks, marking spelling or grammar as dirty will force a re-check when opening the document.
<?php\n\n$proofState = new \\PhpOffice\\PhpWord\\ComplexType\\ProofState();\n$proofState->setGrammar(\\PhpOffice\\PhpWord\\ComplexType\\ProofState::CLEAN);\n$proofState->setSpelling(\\PhpOffice\\PhpWord\\ComplexType\\ProofState::DIRTY);\n\n$phpWord->getSettings()->setProofState($proofState);\n
"},{"location":"usage/introduction.html#track-revisions","title":"Track Revisions","text":"Track changes can be activated using setTrackRevisions
, you can furture specify
Not to use move syntax, instead moved items will be seen as deleted in one place and added in another Not track formatting revisions <?php\n\n$phpWord->getSettings()->setTrackRevisions(true);\n$phpWord->getSettings()->setDoNotTrackMoves(true);\n$phpWord->getSettings()->setDoNotTrackFormatting(true);\n
"},{"location":"usage/introduction.html#decimal-symbol","title":"Decimal Symbol","text":"The default symbol to represent a decimal figure is the .
in english. In french you might want to change it to ,
for instance.
<?php\n\n$phpWord->getSettings()->setDecimalSymbol(',');\n
"},{"location":"usage/introduction.html#document-language","title":"Document Language","text":"The default language of the document can be change with the following.
<?php\n\n$phpWord->getSettings()->setThemeFontLang(new Language(Language::FR_BE));\n
Language
has 3 parameters, one for Latin languages, one for East Asian languages and one for Complex (Bi-Directional) languages. A couple of language codes are provided in the PhpOffice\\PhpWord\\Style\\Language
class but any valid code/ID can be used.
In case you are generating an RTF document the language need to be set differently.
<?php\n\n$lang = new Language();\n$lang->setLangId(Language::EN_GB_ID);\n$phpWord->getSettings()->setThemeFontLang($lang);\n
"},{"location":"usage/introduction.html#document-information","title":"Document information","text":"You can set the document information such as title, creator, and company name. Use the following functions:
<?php\n\n$properties = $phpWord->getDocInfo();\n$properties->setCreator('My name');\n$properties->setCompany('My factory');\n$properties->setTitle('My title');\n$properties->setDescription('My description');\n$properties->setCategory('My category');\n$properties->setLastModifiedBy('My name');\n$properties->setCreated(mktime(0, 0, 0, 3, 12, 2014));\n$properties->setModified(mktime(0, 0, 0, 3, 14, 2014));\n$properties->setSubject('My subject');\n$properties->setKeywords('my, key, word');\n
"},{"location":"usage/introduction.html#measurement-units","title":"Measurement units","text":"The base length unit in Open Office XML is twip. Twip means \"TWentieth of an Inch Point\", i.e. 1 twip = 1/1440 inch.
You can use PHPWord helper functions to convert inches, centimeters, or points to twip.
<?php\n\n// Paragraph with 6 points space after\n$phpWord->addParagraphStyle('My Style', array(\n 'spaceAfter' => \\PhpOffice\\PhpWord\\Shared\\Converter::pointToTwip(6))\n);\n\n$section = $phpWord->addSection();\n$sectionStyle = $section->getStyle();\n// half inch left margin\n$sectionStyle->setMarginLeft(\\PhpOffice\\PhpWord\\Shared\\Converter::inchToTwip(.5));\n// 2 cm right margin\n$sectionStyle->setMarginRight(\\PhpOffice\\PhpWord\\Shared\\Converter::cmToTwip(2));\n
"},{"location":"usage/introduction.html#document-protection","title":"Document protection","text":"The document (or parts of it) can be password protected.
<?php\n\n$documentProtection = $phpWord->getSettings()->getDocumentProtection();\n$documentProtection->setEditing(DocProtect::READ_ONLY);\n$documentProtection->setPassword('myPassword');\n
"},{"location":"usage/introduction.html#automatically-recalculate-fields-on-open","title":"Automatically Recalculate Fields on Open","text":"To force an update of the fields present in the document, set updateFields to true
<?php\n\n$phpWord->getSettings()->setUpdateFields(true);\n
"},{"location":"usage/introduction.html#hyphenation","title":"Hyphenation","text":"Hyphenation describes the process of breaking words with hyphens. There are several options to control hyphenation.
"},{"location":"usage/introduction.html#auto-hyphenation","title":"Auto hyphenation","text":"To automatically hyphenate text set autoHyphenation
to true
.
<?php\n\n$phpWord->getSettings()->setAutoHyphenation(true);\n
"},{"location":"usage/introduction.html#consecutive-hyphen-limit","title":"Consecutive Hyphen Limit","text":"The maximum number of consecutive lines of text ending with a hyphen can be controlled by the consecutiveHyphenLimit
option. There is no limit if the option is not set or the provided value is 0
.
<?php\n\n$phpWord->getSettings()->setConsecutiveHyphenLimit(2);\n
"},{"location":"usage/introduction.html#hyphenation-zone","title":"Hyphenation Zone","text":"The hyphenation zone (in twip) is the allowed amount of whitespace before hyphenation is applied. The smaller the hyphenation zone the more words are hyphenated. Or in other words, the wider the hyphenation zone the less words are hyphenated.
<?php\n\n$phpWord->getSettings()->setHyphenationZone(\\PhpOffice\\PhpWord\\Shared\\Converter::cmToTwip(1));\n
"},{"location":"usage/introduction.html#hyphenate-caps","title":"Hyphenate Caps","text":"To control whether or not words in all capital letters shall be hyphenated use the doNotHyphenateCaps
option.
<?php\n\n$phpWord->getSettings()->setDoNotHyphenateCaps(true);\n
"},{"location":"usage/readers.html","title":"Readers","text":""},{"location":"usage/readers.html#html","title":"HTML","text":"The name of the reader is HTML
.
<?php\n\n$reader = IOFactory::createReader('HTML');\n$reader->load(__DIR__ . '/sample.html');\n
"},{"location":"usage/readers.html#msdoc","title":"MsDoc","text":"The name of the reader is MsDoc
.
<?php\n\n$reader = IOFactory::createReader('MsDoc');\n$reader->load(__DIR__ . '/sample.doc');\n
"},{"location":"usage/readers.html#odtext","title":"ODText","text":"The name of the reader is ODText
.
<?php\n\n$reader = IOFactory::createReader('ODText');\n$reader->load(__DIR__ . '/sample.odt');\n
"},{"location":"usage/readers.html#rtf","title":"RTF","text":"The name of the reader is RTF
.
<?php\n\n$reader = IOFactory::createReader('RTF');\n$reader->load(__DIR__ . '/sample.rtf');\n
"},{"location":"usage/readers.html#word2007","title":"Word2007","text":"The name of the reader is Word2007
.
<?php\n\n$reader = IOFactory::createReader('Word2007');\n$reader->load(__DIR__ . '/sample.docx');\n
"},{"location":"usage/template.html","title":"Template processing","text":"You can create an OOXML document template with included search-patterns (macros) which can be replaced by any value you wish. Only single-line values can be replaced. By default Macros are defined like this: ${search-pattern}
but you can define custom macros. To load a template file, create a new instance of the TemplateProcessor.
<?php\n\n$templateProcessor = new TemplateProcessor('Template.docx');\n
"},{"location":"usage/template.html#setvalue","title":"setValue","text":"Given a template containing
Hello ${firstname} ${lastname}!\n
The following will replace ${firstname}
with John
, and ${lastname}
with Doe
. The resulting document will now contain Hello John Doe!
<?php\n\n$templateProcessor->setValue('firstname', 'John');\n$templateProcessor->setValue('lastname', 'Doe');\n
"},{"location":"usage/template.html#setvalues","title":"setValues","text":"You can also set multiple values by passing all of them in an array.
<?php\n\n$templateProcessor->setValues(array('firstname' => 'John', 'lastname' => 'Doe'));\n
"},{"location":"usage/template.html#setcheckbox","title":"setCheckbox","text":"Given a template containing a checkbox control with the title or tag named:
${checkbox}\n
The following will check the checkbox: <?php\n\n$templateProcessor->setCheckbox('checkbox', true);\n
To add a checkbox and set its title or tag in a template
Go to Developer tab > Controls group Select the Check Box Content Control Right-click on your checkbox Click on Properties Set the title or the tag These steps may change regarding the version of Microsoft Word used.
"},{"location":"usage/template.html#setmacroopeningchars","title":"setMacroOpeningChars","text":"You can define a custom opening macro. The following will set {#
as the opening search pattern.
<?php\n\n$templateProcessor->setMacroOpeningChars('{#');\n
"},{"location":"usage/template.html#setmacroclosingchars","title":"setMacroClosingChars","text":"You can define a custom closing macro. The following will set #}
as the closing search pattern.
<?php\n\n$templateProcessor->setMacroClosingChars('#}');\n
"},{"location":"usage/template.html#setmacrochars","title":"setMacroChars","text":"You can define a custom opening and closing macro at the same time . The following will set the search-pattern like this: {#search-pattern#}
.
<?php\n\n$templateProcessor->setMacroChars('{#', '#}');\n
"},{"location":"usage/template.html#setimagevalue","title":"setImageValue","text":"The search-pattern model for images can be like: - ${search-image-pattern}
- ${search-image-pattern:[width]:[height]:[ratio]}
- ${search-image-pattern:[width]x[height]}
- ${search-image-pattern:size=[width]x[height]}
- ${search-image-pattern:width=[width]:height=[height]:ratio=false}
Where: - [width] and [height] can be just numbers or numbers with measure, which supported by Word (cm, mm, in, pt, pc, px, %, em, ex) - [ratio] uses only for false
, -
or f
to turn off respect aspect ration of image. By default template image size uses as 'container' size.
Example:
${CompanyLogo}\n${UserLogo:50:50} ${Name} - ${City} - ${Street}\n
<?php\n\n$templateProcessor = new TemplateProcessor('Template.docx');\n$templateProcessor->setValue('Name', 'John Doe');\n$templateProcessor->setValue(array('City', 'Street'), array('Detroit', '12th Street'));\n\n$templateProcessor->setImageValue('CompanyLogo', 'path/to/company/logo.png');\n$templateProcessor->setImageValue('UserLogo', array('path' => 'path/to/logo.png', 'width' => 100, 'height' => 100, 'ratio' => false));\n$templateProcessor->setImageValue('FeatureImage', function () {\n // Closure will only be executed if the replacement tag is found in the template\n\n return array('path' => SlowFeatureImageGenerator::make(), 'width' => 100, 'height' => 100, 'ratio' => false);\n});\n
"},{"location":"usage/template.html#cloneblock","title":"cloneBlock","text":"Given a template containing See Sample_23_TemplateBlock.php
for an example.
${block_name}\nCustomer: ${customer_name}\nAddress: ${customer_address}\n${/block_name}\n
The following will duplicate everything between ${block_name}
and ${/block_name}
3 times.
<?php\n\n$templateProcessor->cloneBlock('block_name', 3, true, true);\n
The last parameter will rename any macro defined inside the block and add #1, #2, #3 ... to the macro name. The result will be
Customer: ${customer_name#1}\nAddress: ${customer_address#1}\n\nCustomer: ${customer_name#2}\nAddress: ${customer_address#2}\n\nCustomer: ${customer_name#3}\nAddress: ${customer_address#3}\n
It is also possible to pass an array with the values to replace the marcros with. If an array with replacements is passed, the count
argument is ignored, it is the size of the array that counts.
<?php\n\n$replacements = array(\n array('customer_name' => 'Batman', 'customer_address' => 'Gotham City'),\n array('customer_name' => 'Superman', 'customer_address' => 'Metropolis'),\n);\n$templateProcessor->cloneBlock('block_name', 0, true, false, $replacements);\n
The result will then be
Customer: Batman\nAddress: Gotham City\n\nCustomer: Superman\nAddress: Metropolis\n
"},{"location":"usage/template.html#replaceblock","title":"replaceBlock","text":"Given a template containing
${block_name}\nThis block content will be replaced\n${/block_name}\n
The following will replace everything between ${block_name}
and ${/block_name}
with the value passed.
<?php\n\n$templateProcessor->replaceBlock('block_name', 'This is the replacement text.');\n
"},{"location":"usage/template.html#deleteblock","title":"deleteBlock","text":"Same as previous, but it deletes the block
<?php\n\n$templateProcessor->deleteBlock('block_name');\n
"},{"location":"usage/template.html#clonerow","title":"cloneRow","text":"Clones a table row in a template document. See Sample_07_TemplateCloneRow.php
for an example.
+-----------+----------------+\n| ${userId} | ${userName} |\n| |----------------+\n| | ${userAddress} |\n+-----------+----------------+\n
<?php\n\n$templateProcessor->cloneRow('userId', 2);\n
Will result in
+-------------+------------------+\n| ${userId#1} | ${userName#1} |\n| |------------------+\n| | ${userAddress#1} |\n+-------------+------------------+\n| ${userId#2} | ${userName#2} |\n| |------------------+\n| | ${userAddress#2} |\n+-------------+------------------+\n
"},{"location":"usage/template.html#clonerowandsetvalues","title":"cloneRowAndSetValues","text":"Finds a row in a table row identified by $search
param and clones it as many times as there are entries in $values
.
+-----------+----------------+\n| ${userId} | ${userName} |\n| |----------------+\n| | ${userAddress} |\n+-----------+----------------+\n
<?php\n\n$values = [\n ['userId' => 1, 'userName' => 'Batman', 'userAddress' => 'Gotham City'],\n ['userId' => 2, 'userName' => 'Superman', 'userAddress' => 'Metropolis'],\n];\n$templateProcessor->cloneRowAndSetValues('userId', $values);\n
Will result in
+---+-------------+\n| 1 | Batman |\n| |-------------+\n| | Gotham City |\n+---+-------------+\n| 2 | Superman |\n| |-------------+\n| | Metropolis |\n+---+-------------+\n
"},{"location":"usage/template.html#applyxslstylesheet","title":"applyXslStyleSheet","text":"Applies the XSL stylesheet passed to header part, footer part and main part
<?php\n\n$xslDomDocument = new \\DOMDocument();\n$xslDomDocument->load('/path/to/my/stylesheet.xsl');\n$templateProcessor->applyXslStyleSheet($xslDomDocument);\n
"},{"location":"usage/template.html#setcomplexvalue","title":"setComplexValue","text":"Replaces a ${macro} with the ComplexType passed. See Sample_40_TemplateSetComplexValue.php
for examples.
<?php\n\n$inline = new TextRun();\n$inline->addText('by a red italic text', array('italic' => true, 'color' => 'red'));\n$templateProcessor->setComplexValue('inline', $inline);\n
"},{"location":"usage/template.html#setcomplexblock","title":"setComplexBlock","text":"Replaces a ${macro} with the ComplexType passed. See Sample_40_TemplateSetComplexValue.php
for examples.
<?php\n\n$table = new Table(array('borderSize' => 12, 'borderColor' => 'green', 'width' => 6000, 'unit' => TblWidth::TWIP));\n$table->addRow();\n$table->addCell(150)->addText('Cell A1');\n$table->addCell(150)->addText('Cell A2');\n$table->addCell(150)->addText('Cell A3');\n$table->addRow();\n$table->addCell(150)->addText('Cell B1');\n$table->addCell(150)->addText('Cell B2');\n$table->addCell(150)->addText('Cell B3');\n$templateProcessor->setComplexBlock('table', $table);\n
"},{"location":"usage/template.html#setchartvalue","title":"setChartValue","text":"Replace a variable by a chart.
<?php\n\n$categories = array('A', 'B', 'C', 'D', 'E');\n$series1 = array(1, 3, 2, 5, 4);\n$chart = new Chart('doughnut', $categories, $series1);\n$templateProcessor->setChartValue('myChart', $chart);\n
"},{"location":"usage/template.html#save","title":"save","text":"Saves the loaded template within the current directory. Returns the file path.
<?php\n\n$filepath = $templateProcessor->save();\n
"},{"location":"usage/template.html#saveas","title":"saveAs","text":"Saves a copy of the loaded template in the indicated path.
<?php\n\n$pathToSave = 'path/to/save/file.ext';\n$templateProcessor->saveAs($pathToSave);\n
"},{"location":"usage/writers.html","title":"Writers","text":""},{"location":"usage/writers.html#html","title":"HTML","text":"The name of the writer is HTML
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'HTML');\n$writer->save(__DIR__ . '/sample.html');\n
When generating html/pdf, you can alter the default handling of white space (normal), and/or supply a fallback generic font as follows:
$writer = IOFactory::createWriter($oPhpWord, 'HTML');\n$writer->setDefaultGenericFont('serif');\n$writer->setDefaultWhiteSpace('pre-wrap');\n$writer->save(__DIR__ . '/sample.html');\n
"},{"location":"usage/writers.html#odtext","title":"ODText","text":"The name of the writer is ODText
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'ODText');\n$writer->save(__DIR__ . '/sample.docx');\n
"},{"location":"usage/writers.html#pdf","title":"PDF","text":"The name of the writer is PDF
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'PDF');\n$writer->save(__DIR__ . '/sample.pdf');\n
To generate a PDF, the PhpWord object passes through HTML before generating the PDF. This HTML can be modified using a callback.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'PDF');\n$writer->setEditCallback('cbEditHTML');\n$writer->save(__DIR__ . '/sample.pdf');\n\n/**\n * Add a meta tag generator\n */\nfunction cbEditHTML(string $inputHTML): string\n{\n $beforeBody = '<meta name=\"generator\" content=\"PHPWord\" />';\n $needle = '</head>';\n\n $pos = strpos($inputHTML, $needle);\n if ($pos !== false) {\n $inputHTML = (string) substr_replace($inputHTML, \"$beforeBody\\n$needle\", $pos, strlen($needle));\n }\n\n return $inputHTML;\n}\n
"},{"location":"usage/writers.html#options","title":"Options","text":"You can define options like : * font
: default font
Options must be defined before creating the writer.
<?php\n\nuse PhpOffice\\PhpWord\\Settings;\n\nSettings::setPdfRendererOptions([\n 'font' => 'Arial'\n]);\n\n$writer = IOFactory::createWriter($oPhpWord, 'PDF');\n$writer->save(__DIR__ . '/sample.pdf');\n
"},{"location":"usage/writers.html#specify-the-pdf-renderer","title":"Specify the PDF Renderer","text":"Before PHPWord can write a PDF, you must specify the renderer to use and the path to it. Currently, three renderers are supported:
To specify the renderer you use two static Settings
functions:
setPdfRendererName
: This sets the name of the renderer library to use. Provide one of Settings
' three PDF_
constants to the function call. setPdfRendererPath
: This sets the path to the renderer library. This directory is the renderer's package directory within Composer's vendor directory. In the code below, you can see an example of setting MPDF as the desired PDF renderer.
Settings::setPdfRendererName(Settings::PDF_RENDERER_MPDF);\nSettings::setPdfRendererPath(__DIR__ . '/../vendor/mpdf/mpdf');\n
"},{"location":"usage/writers.html#rtf","title":"RTF","text":"The name of the writer is RTF
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'RTF');\n$writer->save(__DIR__ . '/sample.rtf');\n
"},{"location":"usage/writers.html#word2007","title":"Word2007","text":"The name of the writer is Word2007
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'Word2007');\n$writer->save(__DIR__ . '/sample.docx');\n
"},{"location":"usage/writers.html#zip-adapter","title":"ZIP Adapter","text":"You can change the ZIP Adapter for the writer. By default, the ZIP Adapter is ZipArchiveAdapter
.
<?php\n\nuse PhpOffice\\Common\\Adapter\\Zip\\PclZipAdapter;\nuse PhpOffice\\Common\\Adapter\\Zip\\ZipArchiveAdapter;\n\n$writer = IOFactory::createWriter($oPhpWord, 'Word2007');\n$writer->setZipAdapter(new PclZipAdapter());\n$writer->save(__DIR__ . '/sample.docx');\n
"},{"location":"usage/elements/index.html","title":"Elements","text":"Below are the matrix of element availability in each container. The column shows the containers while the rows lists the elements.
Num Element Section Header Footer Cell Text Run Footnote 1 Text 2 Text Run 3 Link 4 Title 5 Preserve Text 6 Text Break 7 Page Break 8 List 9 Table 10 Image 11 Watermark 12 OLEObject 13 TOC 14 Footnote 15 Endnote 16 CheckBox 17 TextBox 18 Field 19 Line 20 Chart Legend:
: Available. : Available only when inside header/footer. : Available only when inside section. : Not available. : Should be available. "},{"location":"usage/elements/chart.html","title":"Chart","text":"Charts can be added using
<?php\n\n$categories = array('A', 'B', 'C', 'D', 'E');\n$series = array(1, 3, 2, 5, 4);\n$chart = $section->addChart('line', $categories, $series, $style);\n
For available styling options, see Styles > Chart
.
Check out the Sample_32_Chart.php for more options and styling.
"},{"location":"usage/elements/checkbox.html","title":"Checkbox","text":"Checkbox elements can be added to sections or table cells by using addCheckBox
.
<?php\n\n$section->addCheckBox($name, $text, [$fontStyle], [$paragraphStyle]);\n
$name
. Name of the check box. $text
. Text to be displayed in the document. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. "},{"location":"usage/elements/comment.html","title":"Comment","text":"Comments can be added to a document by using addComment
. The comment can contain formatted text. Once the comment has been added, it can be linked to any element with setCommentRangeStart
.
<?php\n\n// first create a comment\n$comment= new \\PhpOffice\\PhpWord\\Element\\Comment('Authors name', new \\DateTime(), 'my_initials');\n$comment->addText('Test', array('bold' => true));\n\n// add it to the document\n$phpWord->addComment($comment);\n\n$textrun = $section->addTextRun();\n$textrun->addText('This ');\n$text = $textrun->addText('is');\n// link the comment to the text you just created\n$text->setCommentRangeStart($comment);\n$textrun->addText(' a test');\n
If no end is set for a comment using the setCommentRangeEnd
, the comment will be ended automatically at the end of the element it is started on.
"},{"location":"usage/elements/field.html","title":"Field","text":"Currently the following fields are supported:
PAGE NUMPAGES DATE XE INDEX FILENAME REF <?php\n\n$section->addField($fieldType, [$properties], [$options], [$fieldText], [$fontStyle])\n
$fontStyle
. See Styles > Font
. See \\PhpOffice\\PhpWord\\Element\\Field
for list of properties and options available for each field type. Options which are not specifically defined can be added. Those must start with a \\
.
For instance for the INDEX field, you can do the following (See Index Field for list of available options <https://support.office.com/en-us/article/Field-codes-Index-field-adafcf4a-cb30-43f6-85c7-743da1635d9e?ui=en-US&rs=en-US&ad=US>
_ ):
<?php\n\n// the $fieldText can be either a simple string\n$fieldText = 'The index value';\n\n// or a 'TextRun', to be able to format the text you want in the index\n$fieldText = new TextRun();\n$fieldText->addText('My ');\n$fieldText->addText('bold index', ['bold' => true]);\n$fieldText->addText(' entry');\n$section->addField('XE', array(), array(), $fieldText);\n\n// this actually adds the index\n$section->addField('INDEX', array(), array('\\\\e \" \" \\\\h \"A\" \\\\c \"3\"'), 'right click to update index');\n\n// Adding reference to a bookmark\n$fieldText->addField('REF', [\n 'name' => 'bookmark'\n], [\n 'InsertParagraphNumberRelativeContext',\n 'CreateHyperLink',\n]);\n
"},{"location":"usage/elements/formula.html","title":"Formula","text":"Formula can be added using
<?php\n\nuse PhpOffice\\Math\\Element;\nuse PhpOffice\\Math\\Math;\n\n$fraction = new Element\\Fraction();\n$fraction\n ->setDenominator(new Element\\Numeric(2))\n ->setNumerator(new Element\\Identifier('\u03c0'))\n;\n\n$math = new Math();\n$math->add($fraction);\n\n$formula = $section->addFormula($math);\n
"},{"location":"usage/elements/image.html","title":"Image","text":"To add an image, use the addImage
method to sections, headers, footers, textruns, or table cells.
<?php\n\n$section->addImage($src, [$style]);\n
$src
. String path to a local image, URL of a remote image or the image data, as a string. Warning: Do not pass user-generated strings here, as that would allow an attacker to read arbitrary files or perform server-side request forgery by passing file paths or URLs instead of image data. $style
. See Styles > Image
. Examples:
<?php\n\n$section = $phpWord->addSection();\n$section->addImage(\n 'mars.jpg',\n array(\n 'width' => 100,\n 'height' => 100,\n 'marginTop' => -1,\n 'marginLeft' => -1,\n 'wrappingStyle' => 'behind'\n )\n);\n$footer = $section->addFooter();\n$footer->addImage('http://example.com/image.php');\n$textrun = $section->addTextRun();\n$textrun->addImage('http://php.net/logo.jpg');\n$source = file_get_contents('/path/to/my/images/earth.jpg');\n$textrun->addImage($source);\n
"},{"location":"usage/elements/line.html","title":"Line","text":"Line elements can be added to sections by using addLine
.
<?php\n\n$lineStyle = array('weight' => 1, 'width' => 100, 'height' => 0, 'color' => 635552);\n$section->addLine($lineStyle);\n
Available line style attributes:
weight
. Line width in twip. color
. Defines the color of stroke. dash
. Line types: dash, rounddot, squaredot, dashdot, longdash, longdashdot, longdashdotdot. beginArrow
. Start type of arrow: block, open, classic, diamond, oval. endArrow
. End type of arrow: block, open, classic, diamond, oval. width
. Line-object width in pt. height
. Line-object height in pt. flip
. Flip the line element: true, false. "},{"location":"usage/elements/link.html","title":"Link","text":"You can add Hyperlinks to the document by using the function addLink:
<?php\n\n$section->addLink($linkSrc, [$linkName], [$fontStyle], [$paragraphStyle]);\n
$linkSrc
. The URL of the link. $linkName
. Placeholder of the URL that appears in the document. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. "},{"location":"usage/elements/list.html","title":"List","text":"Lists can be added by using addListItem
and addListItemRun
methods. addListItem
is used for creating lists that only contain plain text. addListItemRun
is used for creating complex list items that contains texts with different style (some bold, other italics, etc) or other elements, e.g. images or links. The syntaxes are as follow:
Basic usage:
<?php\n\n$section->addListItem($text, [$depth], [$fontStyle], [$listStyle], [$paragraphStyle]);\n$listItemRun = $section->addListItemRun([$depth], [$listStyle], [$paragraphStyle])\n
Parameters:
$text
. Text that appears in the document. $depth
. Depth of list item. $fontStyle
. See Styles > Font
.. $listStyle
. List style of the current element TYPE_NUMBER, TYPE_ALPHANUM, TYPE_BULLET_FILLED, etc. See list of constants in PHPWord\\Style\\ListItem. $paragraphStyle
. See Styles > Paragraph
.. See Sample_14_ListItem.php
for more code sample.
Advanced usage:
You can also create your own numbering style by changing the $listStyle
parameter with the name of your numbering style.
<?php\n\n$phpWord->addNumberingStyle(\n 'multilevel',\n array(\n 'type' => 'multilevel',\n 'levels' => array(\n array('format' => 'decimal', 'text' => '%1.', 'left' => 360, 'hanging' => 360, 'tabPos' => 360),\n array('format' => 'upperLetter', 'text' => '%2.', 'left' => 720, 'hanging' => 360, 'tabPos' => 720),\n )\n )\n);\n$section->addListItem('List Item I', 0, null, 'multilevel');\n$section->addListItem('List Item I.a', 1, null, 'multilevel');\n$section->addListItem('List Item I.b', 1, null, 'multilevel');\n$section->addListItem('List Item II', 0, null, 'multilevel');\n
For available styling options see Styles > Numbering Level
.
"},{"location":"usage/elements/note.html","title":"Footnote & Endnote","text":"You can create footnotes with addFootnote
and endnotes withaddEndnote
in texts or textruns, but it's recommended to use textrun to have better layout. You can use addText
, addLink
,addTextBreak
, addImage
, addOLEObject
on footnotes and endnotes.
On textrun:
<?php\n\n$textrun = $section->addTextRun();\n$textrun->addText('Lead text.');\n$footnote = $textrun->addFootnote();\n$footnote->addText('Footnote text can have ');\n$footnote->addLink('http://test.com', 'links');\n$footnote->addText('.');\n$footnote->addTextBreak();\n$footnote->addText('And text break.');\n$textrun->addText('Trailing text.');\n$endnote = $textrun->addEndnote();\n$endnote->addText('Endnote put at the end');\n
On text:
<?php\n\n$section->addText('Lead text.');\n$footnote = $section->addFootnote();\n$footnote->addText('Footnote text.');\n
By default the footnote reference number will be displayed with decimal number starting from 1. This number uses the FooterReference
style which you can redefine with the addFontStyle
method. Default value for this style is array('superScript' => true)
;
The footnote numbering can be controlled by setting the FootnoteProperties on the Section.
<?php\n\n$fp = new \\PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties();\n//sets the position of the footnote (pageBottom (default), beneathText, sectEnd, docEnd)\n$fp->setPos(\\PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::POSITION_BENEATH_TEXT);\n//set the number format to use (decimal (default), upperRoman, upperLetter, ...)\n$fp->setNumFmt(\\PhpOffice\\PhpWord\\SimpleType\\NumberFormat::LOWER_ROMAN);\n//force starting at other than 1\n$fp->setNumStart(2);\n//when to restart counting (continuous (default), eachSect, eachPage)\n$fp->setNumRestart(\\PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::RESTART_NUMBER_EACH_PAGE);\n//And finaly, set it on the Section\n$section->setFootnoteProperties($fp);\n
"},{"location":"usage/elements/oleobject.html","title":"Object","text":"You can add OLE embeddings, such as Excel spreadsheets or PowerPoint presentations to the document by using addOLEObject
method.
<?php\n\n$section->addOLEObject($src, [$style]);\n
"},{"location":"usage/elements/pagebreak.html","title":"Page breaks","text":"There are two ways to insert a page break, using the addPageBreak
method or using the pageBreakBefore
style of paragraph.
<?php\n\n$section->addPageBreak();\n
"},{"location":"usage/elements/preservetext.html","title":"Preserve text","text":"The addPreserveText
method is used to add a page number or page count to headers or footers.
<?php\n\n$footer->addPreserveText('Page {PAGE} of {NUMPAGES}.');\n
"},{"location":"usage/elements/table.html","title":"Table","text":"To add tables, rows, and cells, use the addTable
, addRow
, and addCell
methods:
<?php\n\n$table = $section->addTable([$tableStyle]);\n$table->addRow([$height], [$rowStyle]);\n$cell = $table->addCell($width, [$cellStyle]);\n
Table style can be defined with addTableStyle
:
<?php\n\n$tableStyle = array(\n 'borderColor' => '006699',\n 'borderSize' => 6,\n 'cellMargin' => 50\n);\n$firstRowStyle = array('bgColor' => '66BBFF');\n$phpWord->addTableStyle('myTable', $tableStyle, $firstRowStyle);\n$table = $section->addTable('myTable');\n
For available styling options see Styles > Table
.
"},{"location":"usage/elements/table.html#cell-span","title":"Cell span","text":"You can span a cell on multiple columns by using gridSpan
or multiple rows by using vMerge
.
<?php\n\n$cell = $table->addCell(200);\n$cell->getStyle()->setGridSpan(5);\n
See Sample_09_Tables.php
for more code sample.
"},{"location":"usage/elements/text.html","title":"Text","text":"Text can be added by using addText
and addTextRun
methods. addText
is used for creating simple paragraphs that only contain texts with the same style. addTextRun
is used for creating complex paragraphs that contain text with different style (some bold, other italics, etc) or other elements, e.g. images or links. The syntaxes are as follow:
<?php\n\n$section->addText($text, [$fontStyle], [$paragraphStyle]);\n$textrun = $section->addTextRun([$paragraphStyle]);\n
$text
. Text to be displayed in the document. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. For available styling options, see Styles > Font
and Styles > Paragraph
.
If you want to enable track changes on added text you can mark it as INSERTED or DELETED by a specific user at a given time:
<?php\n\n$text = $section->addText('Hello World!');\n$text->setChanged(\\PhpOffice\\PhpWord\\Element\\ChangedElement::TYPE_INSERTED, 'Fred', (new \\DateTime()));\n
"},{"location":"usage/elements/textbox.html","title":"TextBox","text":"To Be Completed...
"},{"location":"usage/elements/textbreak.html","title":"Text breaks","text":"Text breaks are empty new lines. To add text breaks, use the following syntax. All parameters are optional.
<?php\n\n$section->addTextBreak([$breakCount], [$fontStyle], [$paragraphStyle]);\n
$breakCount
. How many lines. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. "},{"location":"usage/elements/title.html","title":"Title","text":"If you want to structure your document or build table of contents, you need titles or headings. To add a title to the document, use the addTitleStyle
and addTitle
method. If depth
is 0, a Title will be inserted, otherwise a Heading1, Heading2, ...
<?php\n\n$phpWord->addTitleStyle($depth, [$fontStyle], [$paragraphStyle]);\n$section->addTitle($text, $depth, $pageNumber);\n
addTitleStyle
: - $depth
- $fontStyle
: See Styles > Font
. - $paragraphStyle
: See Styles > Paragraph
.
addTitle
: - $text
. Text to be displayed in the document. This can be string
or a \\PhpOffice\\PhpWord\\Element\\TextRun
- $depth
- $pageNumber
: Number of the page
It's necessary to add a title style to your document because otherwise the title won't be detected as a real title.
"},{"location":"usage/elements/toc.html","title":"Table of contents","text":"To add a table of contents (TOC), you can use the addTOC
method. Your TOC can only be generated if you have add at least one title (See \"Title\").
<?php\n\n$section->addTOC([$fontStyle], [$tocStyle], [$minDepth], [$maxDepth]);\n
$fontStyle
. See font style section. $tocStyle
. See available options below. $minDepth
. Minimum depth of header to be shown. Default 1. $maxDepth
. Maximum depth of header to be shown. Default 9. Options for $tocStyle
:
tabLeader
. Fill type between the title text and the page number. Use the defined constants in \\PhpOffice\\PhpWord\\Style\\TOC
. tabPos
. The position of the tab where the page number appears in twip. indent
. The indent factor of the titles in twip. "},{"location":"usage/elements/trackchanges.html","title":"Track Changes","text":"Track changes can be set on text elements. There are 2 ways to set the change information on an element. Either by calling the setChangeInfo()
, or by setting the TrackChange
instance on the element with setTrackChange()
.
<?php\n\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n\n// New portrait section\n$section = $phpWord->addSection();\n$textRun = $section->addTextRun();\n\n$text = $textRun->addText('Hello World! Time to ');\n\n$text = $textRun->addText('wake ', array('bold' => true));\n$text->setChangeInfo(TrackChange::INSERTED, 'Fred', time() - 1800);\n\n$text = $textRun->addText('up');\n$text->setTrackChange(new TrackChange(TrackChange::INSERTED, 'Fred'));\n\n$text = $textRun->addText('go to sleep');\n$text->setChangeInfo(TrackChange::DELETED, 'Barney', new \\DateTime('@' . (time() - 3600)));\n
"},{"location":"usage/elements/watermark.html","title":"Watermark","text":"To add a watermark (or page background image), your section needs a header reference. After creating a header, you can use the addWatermark
method to add a watermark.
<?php\n\n$section = $phpWord->addSection();\n$header = $section->addHeader();\n$header->addWatermark('resources/_earth.jpg', array('marginTop' => 200, 'marginLeft' => 55));\n
"},{"location":"usage/styles/chart.html","title":"Chart","text":"Available Chart style options:
width
. Width (in EMU). height
. Height (in EMU). 3d
. Is 3D; applies to pie, bar, line, area, true or false. colors
. A list of colors to use in the chart. title
. The title for the chart. showLegend
. Show legend, true or false. LegendPosition
. Legend position, r (default), b, t, l or tr. categoryLabelPosition
. Label position for categories, nextTo (default), low or high. valueLabelPosition
. Label position for values, nextTo (default), low or high. categoryAxisTitle
. The title for the category axis. valueAxisTitle
. The title for the values axis. majorTickMarkPos
. The position for major tick marks, in, out, cross, none (default). showAxisLabels
. Show labels for axis, true or false. gridX
. Show Gridlines for X-Axis, true or false. gridY
. Show Gridlines for Y-Axis, true or false. "},{"location":"usage/styles/font.html","title":"Font","text":"Available Font style options:
allCaps
. All caps, true or false. bgColor
. Font background color, e.g. FF0000. bold
. Bold, true or false. color
. Font color, e.g. FF0000. doubleStrikethrough
. Double strikethrough, true or false. fgColor
. Font highlight color, e.g. yellow, green, blue. See \\PhpOffice\\PhpWord\\Style\\Font::FGCOLOR_...
class constants for possible values hint
. Font content type, default, eastAsia, or cs. italic
. Italic, true or false. name
. Font name, e.g. Arial. rtl
. Right to Left language, true or false. size
. Font size, e.g. 20, 22. smallCaps
. Small caps, true or false. strikethrough
. Strikethrough, true or false. subScript
. Subscript, true or false. superScript
. Superscript, true or false. underline
. Underline, single, dash, dotted, etc. See \\PhpOffice\\PhpWord\\Style\\Font::UNDERLINE_...
class constants for possible values lang
. Language, either a language code like en-US, fr-BE, etc. or an object (or as an array) if you need to set eastAsian or bidirectional languages See \\PhpOffice\\PhpWord\\Style\\Language
class for some language codes. position
. The text position, raised or lowered, in half points hidden
. Hidden text, true or false. whiteSpace
. How white space is handled when generating html/pdf. Possible values are pre-wrap and normal (other css values for white space are accepted, but are not expected to be useful). fallbackFont
. Fallback generic font for html/pdf. Possible values are sans-serif, serif, and monospace (other css values for generic fonts are accepted). "},{"location":"usage/styles/image.html","title":"Image","text":"Available Image style options:
alignment
. See \\PhpOffice\\PhpWord\\SimpleType\\Jc
class for the details. height
. Height in pt. marginLeft
. Left margin in inches, can be negative. marginTop
. Top margin in inches, can be negative. width
. Width in pt. wrappingStyle
. Wrapping style, inline, square, tight, behind, or infront. wrapDistanceTop
. Top text wrapping in pixels. wrapDistanceBottom
. Bottom text wrapping in pixels. wrapDistanceLeft
. Left text wrapping in pixels. wrapDistanceRight
. Right text wrapping in pixels. "},{"location":"usage/styles/numberinglevel.html","title":"Numbering level","text":"Available NumberingLevel style options:
alignment
. Supports all alignment modes since 1st Edition of ECMA-376 standard up till ISO/IEC 29500:2012. See \\PhpOffice\\PhpWord\\SimpleType\\Jc
class constants for possible values. font
. Font name. format
. Numbering format bullet|decimal|upperRoman|lowerRoman|upperLetter|lowerLetter. hanging
. See paragraph style. hint
. See font style. left
. See paragraph style. restart
. Restart numbering level symbol. start
. Starting value. suffix
. Content between numbering symbol and paragraph text tab|space|nothing. tabPos
. See paragraph style. text
. Numbering level text e.g. %1 for nonbullet or bullet character. "},{"location":"usage/styles/paragraph.html","title":"Paragraph","text":"Available Paragraph style options:
alignment
. Supports all alignment modes since 1st Edition of ECMA-376 standard up till ISO/IEC 29500:2012. See \\PhpOffice\\PhpWord\\SimpleType\\Jc
class constants for possible values. basedOn
. Parent style. hanging
. Hanging indentation in half inches. indent
. Indent (left indentation) in half inches. indentation
. An array of indentation key => value pairs in twip. Supports left, right, firstLine and hanging indentation. See \\PhpOffice\\PhpWord\\Style\\Indentation
for possible identation types. keepLines
. Keep all lines on one page, true or false. keepNext
. Keep paragraph with next paragraph, true or false. lineHeight
. Text line height, e.g. 1.0, 1.5, etc. next
. Style for next paragraph. pageBreakBefore
. Start paragraph on next page, true or false. spaceBefore
. Space before paragraph in twip. spaceAfter
. Space after paragraph in twip. spacing
. Space between lines in twip. If spacingLineRule is auto, 240 (height of 1 line) will be added, so if you want a double line height, set this to 240. spacingLineRule
. Line Spacing Rule. auto, exact, atLeast See \\PhpOffice\\PhpWord\\SimpleType\\LineSpacingRule
class constants for possible values. suppressAutoHyphens
. Hyphenation for paragraph, true or false. tabs
. Set of custom tab stops. widowControl
. Allow first/last line to display on a separate page, true or false. contextualSpacing
. Ignore Spacing Above and Below When Using Identical Styles, true or false. bidi
. Right to Left Paragraph Layout, true or false. shading
. Paragraph Shading. textAlignment
. Vertical Character Alignment on Line. See \\PhpOffice\\PhpWord\\SimpleType\\TextAlignment
class constants for possible values. "},{"location":"usage/styles/section.html","title":"Section","text":"Available Section style options:
borderBottomColor
. Border bottom color. borderBottomSize
. Border bottom size in twip. borderLeftColor
. Border left color. borderLeftSize
. Border left size in twip. borderRightColor
. Border right color. borderRightSize
. Border right size in twip. borderTopColor
. Border top color. borderTopSize
. Border top size in twip. breakType
. Section break type (nextPage, nextColumn, continuous, evenPage, oddPage). colsNum
. Number of columns. colsSpace
. Spacing between columns. footerHeight
. Spacing to bottom of footer. gutter
. Page gutter spacing. headerHeight
. Spacing to top of header. marginTop
. Page margin top in twip. marginLeft
. Page margin left in twip. marginRight
. Page margin right in twip. marginBottom
. Page margin bottom in twip. orientation
. Page orientation (portrait
, which is default, or landscape
). See \\PhpOffice\\PhpWord\\Style\\Section::ORIENTATION_...
class constants for possible values pageSizeH
. Page height in twip. Implicitly defined by orientation
option. Any changes are discouraged. pageSizeW
. Page width in twip. Implicitly defined by orientation
option. Any changes are discouraged. vAlign
. Vertical Page Alignment See \\PhpOffice\\PhpWord\\SimpleType\\VerticalJc
for possible values "},{"location":"usage/styles/table.html","title":"Table","text":"Available Table style options:
alignment
. Supports all alignment modes since 1st Edition of ECMA-376 standard up till ISO/IEC 29500:2012. See \\PhpOffice\\PhpWord\\SimpleType\\JcTable
and \\PhpOffice\\PhpWord\\SimpleType\\Jc
class constants for possible values. bgColor
. Background color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Color
. Border color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Size
. Border size in twip. cellMargin(Top|Right|Bottom|Left)
. Cell margin in twip. indent
. Table indent from leading margin. Must be an instance of \\PhpOffice\\PhpWord\\ComplexType\\TblWidth
. width
. Table width in Fiftieths of a Percent or Twentieths of a Point. unit
. The unit to use for the width. One of \\PhpOffice\\PhpWord\\SimpleType\\TblWidth
. Defaults to auto. layout
. Table layout, either fixed or autofit See \\PhpOffice\\PhpWord\\Style\\Table
for constants. cellSpacing
Cell spacing in twip position
Floating Table Positioning, see below for options bidiVisual
Present table as Right-To-Left Floating Table Positioning options:
leftFromText
Distance From Left of Table to Text in twip rightFromText
Distance From Right of Table to Text in twip topFromText
Distance From Top of Table to Text in twip bottomFromText
Distance From Top of Table to Text in twip vertAnchor
Table Vertical Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::VANCHOR_*
horzAnchor
Table Horizontal Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::HANCHOR_*
tblpXSpec
Relative Horizontal Alignment From Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::XALIGN_*
tblpX
Absolute Horizontal Distance From Anchorin twip tblpYSpec
Relative Vertical Alignment From Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::YALIGN_*
tblpY
Absolute Vertical Distance From Anchorin twip Available Row style options:
cantSplit
. Table row cannot break across pages, true or false. exactHeight
. Row height is exact or at least. tblHeader
. Repeat table row on every new page, true or false. Available Cell style options:
bgColor
. Background color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Color
. Border color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Size
. Border size in twip. border(Top|Right|Bottom|Left)Style
. Border style. You can use constants from \\PhpOffice\\PhpWord\\SimpleType\\Border
gridSpan
. Number of columns spanned. textDirection(btLr|tbRl)
. Direction of text. You can use constants \\PhpOffice\\PhpWord\\Style\\Cell::TEXT_DIR_BTLR
and \\PhpOffice\\PhpWord\\Style\\Cell::TEXT_DIR_TBRL
valign
. Vertical alignment, top, center, both, bottom. vMerge
. restart or continue. width
. Cell width in twip. "}]}
\ No newline at end of file
+{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"index.html","title":"Introduction","text":"PHPWord is a library written in pure PHP that provides a set ofclasses to write to different document file formats, i.e. Microsoft Office Open XML(.docx
), OASIS Open Document Format for Office Applications (.odt
), Rich Text Format (.rtf
), Microsoft Word Binary File (.doc
), HTML (.html
), and PDF (.pdf
).
PHPWord is an open source project licensed under the terms of LGPL version 3. PHPWord is aimed to be a high quality software product by incorporating continuous integration and unit testing. You can learn more about PHPWord by reading this Developers'Documentation.
"},{"location":"index.html#features","title":"Features","text":" Set document properties, e.g. title, subject, and creator. Create document sections with different settings, e.g. portrait/landscape, page size, and page numbering Create header and footer for each sections Set default font type, font size, and paragraph style Use UTF-8 and East Asia fonts/characters Define custom font styles (e.g. bold, italic, color) and paragraph styles (e.g. centered, multicolumns, spacing) either as named style or inline in text Insert paragraphs, either as a simple text or complex one (a text run) that contains other elements Insert titles (headers) and table of contents Insert text breaks and page breaks Insert and format images, either local, remote, or as page watermarks Insert binary OLE Objects such as Excel or Visio Insert and format table with customized properties for each rows (e.g. repeat as header row) and cells (e.g. background color, rowspan, colspan) Insert list items as bulleted, numbered, or multilevel Insert hyperlinks Insert footnotes and endnotes Insert drawing shapes (arc, curve, line, polyline, rect, oval) Insert charts (pie, doughnut, bar, line, area, scatter, radar) Insert form fields (textinput, checkbox, and dropdown) Create document from templates Use XSL 1.0 style sheets to transform headers, main document part, and footers of an OOXML template ... and many more features on progress "},{"location":"index.html#file-formats","title":"File formats","text":"Below are the supported features for each file formats.
"},{"location":"index.html#writers","title":"Writers","text":"Features OOXML ODF RTF HTML PDF Document Properties Standard Custom Element Type Text Text Run Title Link Preserve Text Text Break Page Break List Table Image Object Watermark Table of Contents Header Footer Footnote Endnote Comments Graphs 2D basic graphs 2D advanced graphs 3D graphs Math OMML support MathML support Bonus Encryption Protection"},{"location":"index.html#readers","title":"Readers","text":"Features OOXML DOC ODF RTF HTML Document Properties Standard Custom Element Type Text Text Run Title Link Preserve Text Text Break Page Break List Table Image Object Watermark Table of Contents Header Footer Footnote Endnote Comments Graphs 2D basic graphs 2D advanced graphs 3D graphs Math OMML support MathML support Bonus Encryption Protection"},{"location":"index.html#contributing","title":"Contributing","text":"We welcome everyone to contribute to PHPWord. Below are some of the things that you can do to contribute:
Read our contributing guide Fork us and request a pull to the master branch Submit bug reports or feature requests to GitHub Follow @PHPOffice on Twitter "},{"location":"credits.html","title":"Credits","text":"Images from chart page come from the LibreOffice Core.
Some definitions come from the Office Open XML.
"},{"location":"credits.html#references","title":"References","text":""},{"location":"credits.html#openxml","title":"OpenXML","text":"Known as \"ISO/IEC 29500, Third edition, 2012-09-01\"
ISO :
Part 1: Fundamentals and Markup Language Reference Part 2: Open Packaging Conventions Part 3: Markup Compatibility and Extensibility Part 4: Transitional Migration Features MSDN :
Open XML SDK 2.5 with Validator DocumentFormat.OpenXml.Wordprocessing Namespace on MSDN Library of Congress :
OOXML Format Family -- ISO/IEC 29500 and ECMA 376 Schemas in W3C XML Schema language and in RELAX NG for the Strict variant of PPTX, etc. "},{"location":"credits.html#opendocument","title":"OpenDocument","text":" Oasis OpenDocument Standard Version 1.2 Schema Central Open Document 1.1 "},{"location":"credits.html#rich-text-format","title":"Rich Text Format","text":" Rich Text Format (RTF) Specification, version 1.9.1 "},{"location":"credits.html#word-97","title":"Word 97","text":""},{"location":"faq.html","title":"Frequently asked questions","text":""},{"location":"faq.html#how-contribute-to-phpword","title":"How contribute to PHPWord?","text":" Improve the documentation "},{"location":"howto.html","title":"How to","text":""},{"location":"howto.html#create-float-left-image","title":"Create float left image","text":"Use absolute positioning relative to margin horizontally and to line vertically.
<?php\n\n$imageStyle = array(\n 'width' => 40,\n 'height' => 40,\n 'wrappingStyle' => 'square',\n 'positioning' => 'absolute',\n 'posHorizontalRel' => 'margin',\n 'posVerticalRel' => 'line',\n);\n$textrun->addImage('resources/_earth.jpg', $imageStyle);\n
"},{"location":"howto.html#download-the-produced-file-automatically","title":"Download the produced file automatically","text":"Use php://output
as the filename.
<?php\n\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n$section = $phpWord->addSection();\n$section->addText('Hello World!');\n$file = 'HelloWorld.docx';\nheader(\"Content-Description: File Transfer\");\nheader('Content-Disposition: attachment; filename=\"' . $file . '\"');\nheader('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document');\nheader('Content-Transfer-Encoding: binary');\nheader('Cache-Control: must-revalidate, post-check=0, pre-check=0');\nheader('Expires: 0');\n$xmlWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'Word2007');\n$xmlWriter->save(\"php://output\");\n
"},{"location":"howto.html#create-numbered-headings","title":"Create numbered headings","text":"Define a numbering style and title styles, and match the two styles (with pStyle
and numStyle
) like below.
<?php\n\n$phpWord->addNumberingStyle(\n 'hNum',\n array('type' => 'multilevel', 'levels' => array(\n array('pStyle' => 'Heading1', 'format' => 'decimal', 'text' => '%1'),\n array('pStyle' => 'Heading2', 'format' => 'decimal', 'text' => '%1.%2'),\n array('pStyle' => 'Heading3', 'format' => 'decimal', 'text' => '%1.%2.%3'),\n )\n )\n);\n$phpWord->addTitleStyle(1, array('size' => 16), array('numStyle' => 'hNum', 'numLevel' => 0));\n$phpWord->addTitleStyle(2, array('size' => 14), array('numStyle' => 'hNum', 'numLevel' => 1));\n$phpWord->addTitleStyle(3, array('size' => 12), array('numStyle' => 'hNum', 'numLevel' => 2));\n\n$section->addTitle('Heading 1', 1);\n$section->addTitle('Heading 2', 2);\n$section->addTitle('Heading 3', 3);\n
"},{"location":"howto.html#add-a-link-within-a-title","title":"Add a link within a title","text":"Apply 'HeadingN' paragraph style to TextRun or Link. Sample code:
<?php\n\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n$phpWord->addTitleStyle(1, array('size' => 16, 'bold' => true));\n$phpWord->addTitleStyle(2, array('size' => 14, 'bold' => true));\n$phpWord->addFontStyle('Link', array('color' => '0000FF', 'underline' => 'single'));\n\n$section = $phpWord->addSection();\n\n// Textrun\n$textrun = $section->addTextRun('Heading1');\n$textrun->addText('The ');\n$textrun->addLink('https://github.com/PHPOffice/PHPWord', 'PHPWord', 'Link');\n\n// Link\n$section->addLink('https://github.com/', 'GitHub', 'Link', 'Heading2');\n
"},{"location":"howto.html#remove-compatibility-mode-text-in-the-ms-word-title-bar","title":"Remove [Compatibility Mode] text in the MS Word title bar","text":"Use the Metadata\\Compatibility\\setOoxmlVersion(n)
method with n
is the version of Office:
14 = Office 2010 15 = Office 2013 <?php\n\n$phpWord->getCompatibility()->setOoxmlVersion(15);\n
"},{"location":"install.html","title":"Installation","text":""},{"location":"install.html#requirements","title":"Requirements","text":"Mandatory:
PHP 7.1+ PHP DOM extension PHP JSON extension PHP XML Parser extension PHP XMLWriter extension "},{"location":"install.html#installation_1","title":"Installation","text":"There are two ways to install PHPWord, i.e. via Composer or manually by downloading the library.
"},{"location":"install.html#using-composer","title":"Using Composer","text":"To install via Composer, add the following lines to your composer.json
:
{\n \"require\": {\n \"phpoffice/phpword\": \"dev-master\"\n }\n}\n
"},{"location":"install.html#using-manual-install","title":"Using manual install","text":"To install manually:
download PHPOffice\\PHPWord package from GitHub download PHPOffice\\Common package from GitHub extract the package and put the contents to your machine. <?php\n\nrequire_once 'path/to/PHPWord/src/PhpWord/Autoloader.php';\n\\PhpOffice\\PhpWord\\Autoloader::register();\n\nrequire_once 'path/to/PhpOffice/Common/src/Common/Autoloader.php';\n\\PhpOffice\\Common\\Autoloader::register();\n
"},{"location":"install.html#samples","title":"Samples","text":"After installation, you can browse and use the samples that we've provided, either by command line or using browser. If you can access your PhpWord library folder using browser, point your browser to the samples
folder, e.g. http://localhost/PhpWord/samples/
.
"},{"location":"changes/0.x/0.10.0.html","title":"0.10.0 (4 May 2014)","text":"This release marked heavy refactorings on internal code structure with the creation of some abstract classes to reduce code duplication. Element
subnamespace is introduced in this release to replace Section
. Word2007 reader capability is greatly enhanced. Endnote is introduced. List numbering is now customizable. Basic HTML and PDF writing support is enabled. Basic ODText reader is introduced.
"},{"location":"changes/0.x/0.10.0.html#features","title":"Features","text":" Image: Get image dimensions without EXIF extension - @andrew-kzoo #184 Table: Add tblGrid
element for Libre/Open Office table sizing - @gianis6 #183 Footnote: Ability to insert textbreak in footnote $footnote->addTextBreak()
- @ivanlanin Footnote: Ability to style footnote reference mark by using FootnoteReference
style - @ivanlanin Font: Add bgColor
to font style to define background using HEX color - @jcarignan #168 Table: Add exactHeight
to row style to define whether row height should be exact or atLeast - @jcarignan #168 Element: New CheckBox
element for sections and table cells - @ozilion #156 Settings: Ability to use PCLZip as alternative to ZipArchive - @bskrtich @ivanlanin #106, #140, #185 Template: Ability to find & replace variables in headers & footers - @dgudgeon #190 Template: Ability to clone & delete block of text using cloneBlock
and deleteBlock
- @diego-vieira #191 TOC: Ability to have two or more TOC in one document and to set min and max depth for TOC - @Pyreweb #189 Table: Ability to add footnote in table cell - @ivanlanin #187 Footnote: Ability to add image in footnote - @ivanlanin #187 ListItem: Ability to add list item in header/footer - @ivanlanin #187 CheckBox: Ability to add checkbox in header/footer - @ivanlanin #187 Link: Ability to add link in header/footer - @ivanlanin #187 Object: Ability to add object in header, footer, textrun, and footnote - @ivanlanin #187 Media: Add Media::resetElements()
to reset all media data - @juzi #19 General: Add Style::resetStyles()
- @ivanlanin #187 DOCX Reader: Ability to read header, footer, footnotes, link, preservetext, textbreak, pagebreak, table, list, image, and title - @ivanlanin Endnote: Ability to add endnotes - @ivanlanin ListItem: Ability to create custom list and reset list number - @ivanlanin #10, #198 ODT Writer: Basic table writing support - @ivanlanin Image: Keep image aspect ratio if only 1 dimension styled - @japonicus #194 HTML Writer: Basic HTML writer: text, textrun, link, title, textbreak, table, image (as Base64), footnote, endnote - @ivanlanin #203, #67, #147 PDF Writer: Basic PDF writer using DomPDF: All HTML element except image - @ivanlanin #68 DOCX Writer: Change docProps/app.xml
Application
to PHPWord
- @ivanlanin DOCX Writer: Create word/settings.xml
and word/webSettings.xml
dynamically - @ivanlanin ODT Writer: Basic image writing - @ivanlanin ODT Writer: Link writing - @ivanlanin ODT Reader: Basic ODText Reader - @ivanlanin #71 Section: Ability to define gutter and line numbering - @ivanlanin Font: Small caps, all caps, and double strikethrough - @ivanlanin #151 Settings: Ability to use measurement unit other than twips with setMeasurementUnit
- @ivanlanin #199 Style: Remove bgColor
from Font
, Table
, and Cell
and put it into the new Shading
style - @ivanlanin Style: New Indentation
and Spacing
style - @ivanlanin Paragraph: Ability to define first line and right indentation - @ivanlanin "},{"location":"changes/0.x/0.10.0.html#bugfixes","title":"Bugfixes","text":" Footnote: Footnote content doesn't show footnote reference number - @ivanlanin #170 Documentation: Error in a function - @theBeerNut #195 "},{"location":"changes/0.x/0.10.0.html#deprecated","title":"Deprecated","text":" createTextRun
replaced by addTextRun
createFootnote
replaced by addFootnote
createHeader
replaced by addHeader
createFooter
replaced by addFooter
createSection
replaced by addSection
Element\\Footnote::getReferenceId
replaced by Element\\AbstractElement::getRelationId
Element\\Footnote::setReferenceId
replaced by Element\\AbstractElement::setRelationId
Footnote::addFootnoteLinkElement
replaced by Media::addElement
Footnote::getFootnoteLinkElements
replaced by Media::getElements
All current methods on Media
Element\\Link::getLinkSrc
replaced by Element\\Link::getTarget
Element\\Link::getLinkName
replaced by Element\\Link::getText
Style\\Cell::getDefaultBorderColor
"},{"location":"changes/0.x/0.10.0.html#miscellaneous","title":"Miscellaneous","text":" Documentation: Simplify page level docblock - @ivanlanin #179 Writer: Refactor writer classes and create a new Write\\AbstractWriter
abstract class - @ivanlanin #160 General: Refactor folders: Element
and Exception
- @ivanlanin #187 General: Remove legacy HashTable
and Shared\\ZipStreamWrapper
and all related properties/methods - @ivanlanin #187 Element: New AbstractElement
abstract class - @ivanlanin #187 Media: Refactor media class to use one method for all docPart (section, header, footer, footnote) - @ivanlanin #187 General: Remove underscore prefix from all private properties name - @ivanlanin #187 General: Move Section Settings
to Style\\Section
- @ivanlanin #187 General: Give Abstract
prefix and Interface
suffix for all abstract classes and interfaces as per PHP-FIG recommendation - @ivanlanin #187 Style: New Style\\AbstractStyle
abstract class - @ivanlanin #187 Writer: New 'ODText\\Base` class - @ivanlanin #187 General: Rename Footnote
to Footnotes
to reflect the nature of collection - @ivanlanin General: Add some unit tests for Shared & Element (100%!) - @Progi1984 Test: Add some samples and tests for image wrapping style - @brunocasado #59 Refactor: Remove Style\\Tabs - @ivanlanin Refactor: Apply composite pattern for writers - @ivanlanin Refactor: Split AbstractContainer
from AbstractElement
- @ivanlanin Refactor: Apply composite pattern for Word2007 reader - @ivanlanin "},{"location":"changes/0.x/0.10.1.html","title":"0.10.1 (21 May 2014)","text":"This is a bugfix release for php-zip
requirement in Composer.
Change Composer requirements for php-zip from require
to suggest
- @bskrtich #246 "},{"location":"changes/0.x/0.11.0.html","title":"0.11.0 (1 June 2014)","text":"This release marked the change of PHPWord license from LGPL 2.1 to LGPL 3. Four new elements were added: TextBox, ListItemRun, Field, and Line. Relative and absolute positioning for images and textboxes were added. Writer classes were refactored into parts, elements, and styles. ODT and RTF features were enhanced. Ability to add elements to PHPWord object via HTML were implemented. RTF and HTML reader were initiated.
"},{"location":"changes/0.x/0.11.0.html#features","title":"Features","text":" Image: Ability to define relative and absolute positioning - @basjan #217 Footer: Conform footer with header by adding firstPage, evenPage and by inheritance - @basjan @ivanlanin #219 Element: New TextBox
element - @basjan @ivanlanin #228, #229, #231 HTML: Ability to add elements to PHPWord object via html - @basjan #231 Element: New ListItemRun
element that can add a list item with inline formatting like a textrun - @basjan #235 Table: Ability to add table inside a cell (nested table) - @ivanlanin #149 RTF Writer: UTF8 support for RTF: Internal UTF8 text is converted to Unicode before writing - @ivanlanin #158 Table: Ability to define table width (in percent and twip) and position - @ivanlanin #237 RTF Writer: Ability to add links and page breaks in RTF - @ivanlanin #196 ListItemRun: Remove fontStyle parameter because ListItemRun is inherited from TextRun and TextRun doesn't have fontStyle - @ivanlanin Config: Ability to use a config file to store various common settings - @ivanlanin #200 ODT Writer: Enable inline font style in TextRun - @ivanlanin ODT Writer: Enable underline, strike/doublestrike, smallcaps/allcaps, superscript/subscript font style - @ivanlanin ODT Writer: Enable section and column - @ivanlanin PDF Writer: Add TCPDF and mPDF as optional PDF renderer library - @ivanlanin ODT Writer: Enable title element and custom document properties - @ivanlanin ODT Reader: Ability to read standard and custom document properties - @ivanlanin Word2007 Writer: Enable the missing custom document properties writer - @ivanlanin Image: Enable \"image float left\" - @ivanlanin #244 RTF Writer: Ability to write document properties - @ivanlanin RTF Writer: Ability to write image - @ivanlanin Element: New Field
element - @basjan #251 RTF Reader: Basic RTF reader - @ivanlanin #72, #252 Element: New Line
element - @basjan #253 Title: Ability to apply numbering in heading - @ivanlanin #193 HTML Reader: Basic HTML reader - @ivanlanin #80, #254 RTF Writer: Basic table writing - @ivanlanin #245 "},{"location":"changes/0.x/0.11.0.html#bugfixes","title":"Bugfixes","text":" Header: All images added to the second header were assigned to the first header - @basjan #222 Conversion: Fix conversion from cm to pixel, pixel to cm, and pixel to point - @basjan #233, #234 PageBreak: Page break adds new line in the beginning of the new page - @ivanlanin #150 Image: marginLeft
and marginTop
cannot accept float value - @ivanlanin #248 Title: Orphan w:fldChar
caused OpenOffice to crash when opening DOCX - @ivanlanin #236 "},{"location":"changes/0.x/0.11.0.html#deprecated","title":"Deprecated","text":" Static classes Footnotes
, Endnotes
, and TOC
Writer\\Word2007\\Part
: Numbering::writeNumbering()
, Settings::writeSettings()
, WebSettings::writeWebSettings()
, ContentTypes::writeContentTypes()
, Styles::writeStyles()
, Document::writeDocument()
all changed into write()
Writer\\Word2007\\Part\\DocProps
: Split into Writer\\Word2007\\Part\\DocPropsCore
and Writer\\Word2007\\Part\\DocPropsApp
Element\\Title::getBookmarkId()
replaced by Element\\Title::getRelationId()
Writer\\HTML::writeDocument
: Replaced by Writer\\HTML::getContent
"},{"location":"changes/0.x/0.11.0.html#miscellaneous","title":"Miscellaneous","text":" License: Change the project license from LGPL 2.1 into LGPL 3.0 - #211 Word2007 Writer: New Style\\Image
class - @ivanlanin Refactor: Replace static classes Footnotes
, Endnotes
, and TOC
with Collections
- @ivanlanin #206 QA: Reactivate phpcpd
and phpmd
on Travis - @ivanlanin Refactor: PHPMD recommendation: Change all get...
method that returns boolean
into is...
or has...
- @ivanlanin Docs: Create gh-pages branch for API documentation - @Progi1984 #154 QA: Add .scrutinizer.yml
and include composer.lock
for preparation to Scrutinizer - @ivanlanin #186 Writer: Refactor writer parts using composite pattern - @ivanlanin Docs: Show code quality and test code coverage badge on README Style: Change behaviour of set...
function of boolean properties; when none is defined, assumed true - @ivanlanin Shared: Unify PHP ZipArchive and PCLZip features into PhpWord ZipArchive - @ivanlanin Docs: Create VERSION file - @ivanlanin QA: Improve dan update requirement check in samples
folder - @ivanlanin "},{"location":"changes/0.x/0.11.1.html","title":"0.11.1 (2 June 2014)","text":"This is an immediate bugfix release for HTML reader.
HTML Reader: <p>
and header tags puts no output - @canyildiz @ivanlanin #257 "},{"location":"changes/0.x/0.12.0.html","title":"0.12.0 (3 January 2015)","text":"This release added form fields (textinput, checkbox, and dropdown), drawing shapes (arc, curve, line, polyline, rect, oval), and basic 2D chart (pie, doughnut, bar, line, area, scatter, radar) elements along with some new styles. Basic MsDoc reader is introduced.
"},{"location":"changes/0.x/0.12.0.html#features","title":"Features","text":" Element: Ability to add drawing shapes (arc, curve, line, polyline, rect, oval) using new Shape
element - @ivanlanin #123 Font: New scale
, spacing
, and kerning
property of font style - @ivanlanin Paragraph: Added shading to the paragraph style for full width shading - @lrobert #264 RTF Writer: Support for sections, margins, and borders - @ivanlanin #249 Section: Ability to set paper size, e.g. A4, A3, and Legal - @ivanlanin #249 General: New PhpWord::save()
method to encapsulate IOFactory
- @ivanlanin General: New Shared\\Converter
static class - @ivanlanin Chart: Basic 2D chart (pie, doughnut, bar, line, area, scatter, radar) - @ivanlanin #278 Chart: 3D charts and ability to set width and height - @ivanlanin FormField: Ability to add textinput, checkbox, and dropdown form elements - @ivanlanin #266 Setting: Ability to define document protection (readOnly, comments, trackedChanges, forms) - @ivanlanin Setting: Ability to remove [Compatibility Mode] text in the MS Word title bar - @ivanlanin SDT: Ability to add structured document tag elements (comboBox, dropDownList, date) - @ivanlanin Paragraph: Support for paragraph with borders - @ivanlanin #294 Word2007 Writer : Support for RTL - @Progi1984 #331 MsDOC Reader: Basic MsDOC Reader - @Progi1984 #23, #287 \"absolute\" horizontal and vertical positioning of Frame - @basjan #302 Add new-page function for PDF generation. For multiple PDF-backends - @chc88 #426 Report style options enumerated when style unknown - @h6w "},{"location":"changes/0.x/0.12.0.html#bugfixes","title":"Bugfixes","text":" Fix rare PclZip/realpath/PHP version problem - @andrew-kzoo #261 addHTML
encoding and ampersand fixes for PHP 5.3 - @bskrtich #270 Page breaks on titles and tables - @ivanlanin #274 Table inside vertical border does not rendered properly - @ivanlanin #280 add<elementName>
of container should be case insensitive, e.g. addToc
should be accepted, not only addTOC
- @ivanlanin #294 Fix specific borders (and margins) were not written correctly in word2007 writer - @pscheit #327 \"HTML is not a valid writer\" exception while running \"Sample_36_RTL.php\" - @RomanSyroeshko #340 \"addShape()\" magic method in AbstractContainer is mistakenly named as \"addObject()\" - @GMTA #356 Element\\Section::setPageSizeW()
and Element\\Section::setPageSizeH()
were mentioned in the docs but not implemented. Special Characters (ampersand) in Title break docx output - @RomanSyroeshko #401 <th>
tag is closed with </td>
tag: - @franzholz #438 "},{"location":"changes/0.x/0.12.0.html#deprecated","title":"Deprecated","text":" Element\\Link::getTarget()
replaced by Element\\Link::getSource()
Element\\Section::getSettings()
and Element\\Section::setSettings()
replaced by Element\\Section::getStyle()
and Element\\Section::setStyle()
Shared\\Drawing
and Shared\\Font
merged into Shared\\Converter
DocumentProperties
replaced by Metadata\\DocInfo
Template
replaced by TemplateProcessor
PhpWord->loadTemplate($filename)
"},{"location":"changes/0.x/0.12.0.html#miscellaneous","title":"Miscellaneous","text":" Docs: Add known issue on README
about requirement for temporary folder to be writable and update samples/index.php
for this requirement check - @ivanlanin #238 Docs: Correct elements.rst about Line - @chrissharkman #292 PclZip: Remove temporary file after used - @andrew-kzoo #265 Autoloader: Add the ability to set the autoloader options - @bskrtich #267 Element: Refactor elements to move set relation Id from container to element - @ivanlanin Introduced CreateTemporaryFileException, CopyFileException - @RomanSyroeshko Settings: added method to set user defined temporary directory - @RomanSyroeshko #310 Renamed Template
into TemplateProcessor
- @RomanSyroeshko #216 Reverted #51. All text escaping must be performed out of the library - @RomanSyroeshko #51 v
"},{"location":"changes/0.x/0.12.1.html","title":"0.12.1 (30 August 2015)","text":"Maintenance release. This release is focused primarily on TemplateProcessor
.
"},{"location":"changes/0.x/0.12.1.html#changes","title":"Changes","text":" Changed visibility of all private properties and methods of TemplateProcessor
to protected
. - @RomanSyroeshko #498 Improved performance of TemplateProcessor::setValue()
. - @RomanSyroeshko @nicoSWD #513 "},{"location":"changes/0.x/0.12.1.html#bugfixes","title":"Bugfixes","text":" Fixed issue with \"Access denied\" message while opening Sample_07_TemplateCloneRow.docx
and Sample_23_TemplateBlock.docx
result files on Windows platform. - @RomanSyroeshko @AshSat #532 Fixed PreserveText
element alignment in footer (see Sample_12_HeaderFooter.php
). - @RomanSyroeshko @SSchwaiger #495 "},{"location":"changes/0.x/0.13.0.html","title":"0.13.0 (31 July 2016)","text":"This release brings several improvements in TemplateProcessor
, automatic output escaping feature for OOXML, ODF, HTML, and RTF (turned off, by default). It also introduces constants for horizontal alignment options, and resolves some issues with PHP 7. Manual installation feature has been dropped since the release. Please, use Composer to install PHPWord.
"},{"location":"changes/0.x/0.13.0.html#added","title":"Added","text":" Introduced the \\PhpOffice\\PhpWord\\SimpleType\\Jc
simple type. - @RomanSyroeshko Introduced the \\PhpOffice\\PhpWord\\SimpleType\\JcTable
simple type. - @RomanSyroeshko Introduced writer for the \"Paragraph Alignment\" element (see \\PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\ParagraphAlignment
). - @RomanSyroeshko Introduced writer for the \"Table Alignment\" element (see \\PhpOffice\\PhpWord\\Writer\\Word2007\\Element\\TableAlignment
). - @RomanSyroeshko Supported indexed arrays in arguments of TemplateProcessor::setValue()
. - @RomanSyroeshko #618 Introduced automatic output escaping for OOXML, ODF, HTML, and RTF. To turn the feature on use phpword.ini
or \\PhpOffice\\PhpWord\\Settings
. - @RomanSyroeshko #483 Supported processing of headers and footers in TemplateProcessor::applyXslStyleSheet()
. - @RomanSyroeshko #335 "},{"location":"changes/0.x/0.13.0.html#changed","title":"Changed","text":" Improved error message for the case when autoload.php
is not found. - @RomanSyroeshko #371 Renamed the align
option of NumberingLevel
, Frame
, Table
, and Paragraph
styles into alignment
. - @RomanSyroeshko Improved performance of TemplateProcessor::setValue()
. - @kazitanvirahsan #614, #617 Fixed some HTML tags not rendering any output (p, header & table) - #257, #324 - @twmobius and @garethellis "},{"location":"changes/0.x/0.13.0.html#deprecated","title":"Deprecated","text":" getAlign
and setAlign
methods of NumberingLevel
, Frame
, Table
, and Paragraph
styles. Use the correspondent getAlignment
and setAlignment
methods instead. - @RomanSyroeshko left
, right
, and justify
alignment options for paragraphs (now are mapped to Jc::START
, Jc::END
, and Jc::BOTH
). - @RomanSyroeshko left
, right
, and justify
alignment options for tables (now are mapped to Jc::START
, Jc::END
, and Jc::CENTER
). - @RomanSyroeshko TCPDF
due to its limited HTML support. Use DomPDF
or MPDF
writer instead. - @RomanSyroeshko #399 "},{"location":"changes/0.x/0.13.0.html#removed","title":"Removed","text":" \\PhpOffice\\PhpWord\\Style\\Alignment
. Style properties, which previously stored instances of this class, now deal with strings. In each case set of available string values is defined by the correspondent simple type. - @RomanSyroeshko Manual installation support. Since the release we have dependencies on third party libraries, so installation via ZIP-archive download is not an option anymore. To install PHPWord use Composer. We also removed \\PhpOffice\\PhpWord\\Autoloader
, because the latter change made it completely useless. Autoloaders provided by Composer are in use now (see bootstrap.php
). - @RomanSyroeshko \\PhpOffice\\PhpWord\\Shared\\Drawing
replaced by \\PhpOffice\\Common\\Drawing
. - @Progi1984 #658 \\PhpOffice\\PhpWord\\Shared\\Font
. - @Progi1984 #658 \\PhpOffice\\PhpWord\\Shared\\String
replaced by \\PhpOffice\\Common\\Text
. - @Progi1984 @RomanSyroeshko #658 \\PhpOffice\\PhpWord\\Shared\\XMLReader
replaced by \\PhpOffice\\Common\\XMLReader
. - @Progi1984 #658 \\PhpOffice\\PhpWord\\Shared\\XMLWriter
replaced by \\PhpOffice\\Common\\XMLWriter
. - @Progi1984 @RomanSyroeshko #658 AbstractContainer::addMemoryImage()
. Use AbstractContainer::addImage()
instead. "},{"location":"changes/0.x/0.13.0.html#fixed","title":"Fixed","text":" Undefined property
error while reading MS-DOC documents. - @jaberu #610 Corrupted OOXML template issue in case when its names is broken immediately after $
sign. That case wasn't taken into account in implementation of TemplateProcessor::fixBrokenMacros()
. - @RomanSyroeshko @d-damien #548 "},{"location":"changes/0.x/0.14.0.html","title":"0.14.0 (29 Dec 2017)","text":"This release fixes several bugs and adds some new features. This version brings compatibility with PHP 7.0 & 7.1
"},{"location":"changes/0.x/0.14.0.html#added","title":"Added","text":" Possibility to control the footnote numbering -by @troosan in #1068 Image creation from string -by @troosan in #937 Introduced the \\PhpOffice\\PhpWord\\SimpleType\\NumberFormat
simple type. - @troosan Support for ContextualSpacing -by @postHawk in #1088 Possiblity to hide spelling and/or grammatical errors -by @troosan in #542 Possiblity to set default document language as well as changing the language for each text element -by @troosan in #1108 Support for Comments -by @troosan in #1067 Support for paragraph textAlignment -by @troosan in #1165 Add support for HTML underline tag <u>
in addHtml -by @zNightFalLz in #1186 Add support for HTML <br>
in addHtml - @anrikunby @troosan in #659 Allow to change cell width unit - guillaume-ro-fr #986 Allow to change the line height rule @troosan Implement PageBreak for odt writerby @cookiekiller in #863 #824 Allow to force an update of all fields on opening a document -by @troosan in #951 Allow adding a CheckBox in a TextRun -by @irond in #727 Add support for HTML img tag -by @srggroup in #934 Add support for password protection for docx -by @mariahaubner in #1019 "},{"location":"changes/0.x/0.14.0.html#fixed","title":"Fixed","text":" Loosen dependency to Zend Images are not being printed when generating PDF -by @hubertinio in #1074 #431 Fixed some PHP 7 warnings - @ likeuntomurphy #927 Fixed PHP 7.2 compatibility (renamed Object
class names to ObjectElement
) -by @SailorMax in #1185 Fixed Word 97 reader - @alsofronie @Benpxpxby @mario-rivera in #912 #920 #892 Fixed image loading over https -by @troosan in #988 Impossibility to set different even and odd page headers -by @troosan in #981 Fixed Word2007 reader where unnecessary paragraphs were being created -by @donghaobo in #1043 #620 Fixed Word2007 reader where margins were not being read correctly -by @slowprog in #885 #1008 Impossible to add element PreserveText in Section -by @rvanlaak in #452 Added missing options for numbering format -by @troosan in #1041 Fixed impossibility to set a different footer for first page -by @ctrlaltca in #1116,by @aoloe in #875 Fixed styles not being applied by HTML writer, better pdf output -by @sarke in #1047 #500 #1139 Fixed read docx error when document contains image from remote url -by @FBnil in #1173 #1176 Padded the $args array to remove error -by @kaigoh in #1150,by @reformed in #870 Fix incorrect image size between windows and mac -by @bskrtich in #874 Fix adding HTML table to document - @mogilvieby @arivanbastos in #324 Fix parsing on/off values (w:val=\"true|false|1|0|on|off\") -by @troosan in #1221 #1219 Fix error on Empty Dropdown Entry -by @ComputerTinker in #592 "},{"location":"changes/0.x/0.14.0.html#deprecated","title":"Deprecated","text":" PhpWord->getProtection(), get it from the settings instead PhpWord->getSettings()->getDocumentProtection(); "},{"location":"changes/0.x/0.15.0.html","title":"0.15.0 (14 Jul 2018)","text":""},{"location":"changes/0.x/0.15.0.html#added","title":"Added","text":" Parsing of align
HTML attribute -by @troosan in #1231 Parse formatting inside HTML lists - @troosanby @samimussbach in #1239 / #945 / #1215 / #508 Parsing of CSS direction
instruction, HTML lang
attribute, formatting inside table cell -by @troosan in #1273 / #1252 / #1254 Add support for Track changes @Cipby @troosan in #354 / #1262 Add support for fixed Table Layout @aoloe @ekopachby @troosan in #841 / #1276 Add support for Cell Spacing @dox07by @troosan in #1040 Add parsing of formatting inside lists @atomicalnetby @troosan in #594 Added support for Vertically Raised or Lowered Text (w:position) @anrikunby @troosan in #640 Add support for MACROBUTTON field @phryneasby @troosan in #1021 Add support for Hyphenationby @Trainmaster in #1282 (Document: autoHyphenation
, consecutiveHyphenLimit
, hyphenationZone
, doNotHyphenateCaps
, Paragraph: suppressAutoHyphens
) Added support for Floating Table Positioning (tblpPr)by @anrikun in #639 Added support for Image text wrapping distanceby @troosan in #1310 Added parsing of CSS line-height and text-indent in HTML readerby @troosan in #1316 Added the ability to enable gridlines and axislabels on chartsby @FrankMeyer in #576 Add support for table indent (tblInd)by @Trainmaster in #1343 Added parsing of internal links in HTML readerby @lalop in #1336 Several improvements to chartsby @JAEK-S in #1332 Add parsing of html image in base64 formatby @jgpATs2w in #1382 Added Support for Indentation & Tabs on RTF Writer.by @smaug1985 in #1405 Allows decimal numbers in HTML line-height styleby @jgpATs2w in #1413 "},{"location":"changes/0.x/0.15.0.html#fixed","title":"Fixed","text":" Fix reading of docx default style -by @troosan in #1238 Fix the size unit of when parsing html images -by @troosan in #1254 Fixed HTML parsing of nested lists -by @troosan in #1265 Save PNG alpha information when using remote images.by @samsullivan in #779 Fix parsing of <w:br/>
tag.by @troosan in #1274 Bookmark are not writton as internal link in html writerby @troosan in #1263 It should be possible to add a Footnote in a ListItemRunby @troosan in #1287 #1287 Fix colspan and rowspan for tables in HTML Writerby @mattbolt in #1292 Fix parsing of Heading and Title formating @troosanby @gthomas2 in #465 Fix Dateformat typo, fix hours casing, add Month-Day-Year formatsby @ComputerTinker in #591 Support reading of w:drawing for documents produced by word 2011+by @gthomas2 in #464 #1324 Fix missing column width in ODText writerby @potofcoffee in #413 Disable entity loader before parsing XML to avoid XXE injectionby @Tom4t0 in #1427 "},{"location":"changes/0.x/0.15.0.html#changed","title":"Changed","text":" Remove zend-stdlib dependencyby @Trainmaster in #1284 The default unit for \\PhpOffice\\PhpWord\\Style\\Image
changed from px
to pt
. "},{"location":"changes/0.x/0.15.0.html#miscellaneous","title":"Miscellaneous","text":" Drop GitHub pages, switch to coveralls for code coverage analysisby @czosel in #1360 "},{"location":"changes/0.x/0.16.0.html","title":"0.16.0 (30 dec 2018)","text":""},{"location":"changes/0.x/0.16.0.html#added","title":"Added","text":" Add getVariableCount method in TemplateProcessor.by @nicoder in #1272 Add setting Chart Title and Legend visibilityby @Tom-Magill in #1433 Add ability to pass a Style object in Section constructorby @ndench in #1416 Add support for hidden textby @Alexmg86 in #1527 Add support for setting images in TemplateProcessorby @SailorMax in #1170 Add \"Plain Text\" type to SDT (Structured Document Tags)by @morrisdj in #1541 Added possibility to index variables inside cloned block in TemplateProcessorby @JPBetley in #817 Added possibility to replace variables inside cloned block with values in TemplateProcessorby @DIDoS in #1392 "},{"location":"changes/0.x/0.16.0.html#fixed","title":"Fixed","text":" Fix regex in cloneBlock
functionby @nicoder in #1269 HTML Title Writer loses text when Title contains a TextRun instead a string.by @begnini in #1436 Fix regex in fixBrokenMacros, make it less greedy @MuriloSo @brainwoodby @yurii-sio2 in #1502 / #1345 240 twips are being added to line spacing, should not happen when using lineRule fixedby @troosan in #1509 / #1505 Adding table layout to the generated HTMLby @aarangara in #1441 Fix loading of Sharepoint documentby @Garrcomm in #1498 RTF writer: Round getPageSizeW and getPageSizeH to avoid decimalsby @Patrick64 in #1493 Fix parsing of Office 365 documentsby @Timanx in #1485 For RTF writers, sizes should should never have decimalsby @Samuel-BF in #1536 Style Name Parsing fails if document generated by a non-english word versionby @begnini in #1434 "},{"location":"changes/0.x/0.16.0.html#miscellaneous","title":"Miscellaneous","text":" Get rid of duplicated code in TemplateProcessorby @abcdmitry in #1161 "},{"location":"changes/0.x/0.17.0.html","title":"0.17.0 (01 oct 2019)","text":""},{"location":"changes/0.x/0.17.0.html#added","title":"Added","text":" Add methods setValuesFromArray and cloneRowFromArray to the TemplateProcessor @geraldb-nicat GH-670 Set complex type in template @troosan GH-1565 implement support for section vAlign @troosan GH-1569 ParseStyle for border-color @Gllrm0 GH-1551 Html writer auto invert text color @SailorMax GH-1387 Add RightToLeft table presentation. @troosan GH-1550 Add support for page vertical alignment. @troosan GH-672 GH-1569 Adding setNumId method for ListItem style @eweso GH-1329 Add support for basic fields in RTF writer. @Samuel-BF GH-1717 "},{"location":"changes/0.x/0.17.0.html#fixed","title":"Fixed","text":" Fix HTML border-color parsing. @troosan GH-1551 / GH-1570 Language::validateLocale should pass with locale 'zxx'. @efpapado GH-1558 can't align center vertically with the text @ter987 GH-672 fix parsing of border-color and add test @troosan GH-1570 TrackChange doesn't handle all return types of \\DateTime::createFromFormat(...) @superhaggis GH-1584 To support PreserveText inside sub container @bhattnishant GH-1637 No nested w:pPr elements in ListItemRun. @waltertamboer GH-1628 Ensure that entity_loader disable variable is re-set back to the original setting @seamuslee001 GH-1585 "},{"location":"changes/0.x/0.17.0.html#miscellaneous","title":"Miscellaneous","text":" Use embedded http server to test loading of remote images @troosan GH-1544 Change private to protected to be able extending class Html @SpinyMan GH-1646 Fix apt-get crash in Travis CI for PHP 5.3 @mdupont GH-1707 "},{"location":"changes/0.x/0.18.0.html","title":"0.18.0 (2021-02-12)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.0.html#enhancements","title":"Enhancements","text":" Add support for charts in template processor #2012 (@dbarzin) add/setting page element border style. #1986 (@emnabs) allow to use customized pdf library #1983 (@SailorMax) feat: Update addHtml to handle style inheritance #1965 (@Julien1138) Add parsing of Shape node values #1924 (@sven-ahrens) Allow to redefine TCPDF object #1907 (@SailorMax) Enhancements to addHTML parser #1902 (@lubosdz) Make Default Paper Configurable #1851 (@oleibman) Implement various missing features for the ODT writer #1796 (@oleibman) Added support for \"cloudConvert\" images #1794 (@ErnestStaug) Add support for several features for the RTF writer #1775 (@oleibman) Add font style for Field elements #1774 (@oleibman) Add support for ListItemRun in HTML writer #1766 (@stefan-91) Improvements in RTF writer #1755 (@oleibman) Allow a closure to be passed with image replacement tags #1716 (@mbardelmeijer) Add Option for Dynamic Chart Legend Position #1699 (@Stephan212) Add parsing of HTML checkbox input field #1832 (@Matze2010) "},{"location":"changes/0.x/0.18.0.html#bug-fixes","title":"Bug fixes","text":" Fix image stroke in libreoffice 7.x #1992 (@Adizbek) Fix deprecated warning for non-hexadecimal number #1988 (@Ciki) Fix limit not taken into account when adding image in template #1967 (@jsochor) Add null check when setComplexValue is not found #1936 (@YannikFirre) Some document have non-standard locale code #1824 (@ErnestStaug) Fixes PHPDoc @param and @return types for several Converter methods #1818 (@caugner) Update the regexp to avoid catastrophic backtracking #1809 (@juzser) Fix PHPUnit tests on develop branch #1771 (@mdupont) TemplateProcessor cloneBlock wrongly clones images #1763 (@alarai) "},{"location":"changes/0.x/0.18.0.html#miscellaneous","title":"Miscellaneous","text":" Compatibility with PHP 7.4, PHP 8.0 and migrate to Laminas Escaper #1946 (@liborm85) Remove legacy PHPOffice/Common package, fix PHP 8.0 compatibility #1996 (@liborm85) Improve Word2007 Test Coverage #1858 (@oleibman) Fix typo in docs. Update templates-processing.rst #1952 (@mnvx) Fix documentation and method name for FootnoteProperties #1776 (@mdupont) fix: documentation about paragraph indentation #1764 (@mdupont) Update templates-processing.rst #1745 (@igronus) Unused variables $rows, $cols in sample #1877 (@ThanasisMpalatsoukas) Add unit test for NumberingStyle #1744 (@Manunchik) Add unit test for PhpWord Settings #1743 (@Manunchik) Add unit test for Media elements #1742 (@Manunchik) Update templates processing docs #1729 (@hcdias) "},{"location":"changes/0.x/0.18.1.html","title":"0.18.1 (2021-03-08)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.1.html#bug-fixes","title":"Bug fixes","text":" Fix BC break in GH-1946. This package does not replace laminas/laminas-zendframework-bridge by @mussbach in #2032 "},{"location":"changes/0.x/0.18.2.html","title":"0.18.2 (2021-06-04)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.2.html#bug-fixes","title":"Bug fixes","text":" when adding image to relationship first check that the generated RID is actually unique by @tpv-ebben in #2063 Update chart, don't write 'c:overlap' if grouping is 'clustered' by @dfsd534 in #2052 Update Html parser to accept line-height:normal by @joelgo in #2041 Fix image border in Word2007 Writer for LibreOffice 7 by k@amilmmach in #2021 "},{"location":"changes/0.x/0.18.2.html#miscellaneous","title":"Miscellaneous","text":" Corrected namespace for Language class in docs by @MegaChriz in #2087 Added support for Garamond font by @artemkolotilkin in #2078 Add BorderStyle for Cell Style to documentation by @DShkrabak in #2090 "},{"location":"changes/0.x/0.18.3.html","title":"0.18.3 (2022-02-17)","text":"Full Changelog
"},{"location":"changes/0.x/0.18.3.html#bug-fixes","title":"Bug fixes","text":""},{"location":"changes/0.x/0.7.0.html","title":"0.7.0 (28 Jan 2014)","text":"This is the first release after a long development hiatus in CodePlex. This release initialized ODT and RTF Writer, along with some other new features for the existing Word2007 Writer, e.g. tab, multiple header, rowspan and colspan. Composer and Travis were added.
"},{"location":"changes/0.x/0.7.0.html#features","title":"Features","text":" Implement RTF Writer - @Progi1984 #1 Implement ODT Writer - @Progi1984 #2 Word2007: Add rowspan and colspan to cells - @kaystrobach Word2007: Support for tab stops - @RLovelett Word2007: Support Multiple headers - @RLovelett Word2007: Wrapping Styles to Images - @gabrielbull Added support for image wrapping style - @gabrielbull "},{"location":"changes/0.x/0.7.0.html#bugfixes","title":"Bugfixes","text":" \"Warning: Invalid error type specified in ...\\PHPWord.php on line 226\" is thrown when the specified template file is not found - @RomanSyroeshko #32 PHPWord_Shared_String.IsUTF8 returns FALSE for Cyrillic UTF-8 input - @RomanSyroeshko #34 Temporary files naming logic in PHPWord_Template can lead to a collision - @RomanSyroeshko #38 "},{"location":"changes/0.x/0.7.0.html#miscellaneous","title":"Miscellaneous","text":" Add superscript/subscript styling in Excel2007 Writer - @MarkBaker add indentation support to paragraphs - @deds Support for Composer - @Progi1984 #27 Basic CI with Travis - @Progi1984 Added PHPWord_Exception and exception when could not copy the template - @Progi1984 IMPROVED: Moved examples out of Classes directory - @Progi1984 IMPROVED: Advanced string replace in setValue for Template - @Esmeraldo #49 "},{"location":"changes/0.x/0.8.0.html","title":"0.8.0 (15 Mar 2014)","text":"This release merged a lot of improvements from the community. Unit tests introduced in this release and has reached 90% code coverage.
"},{"location":"changes/0.x/0.8.0.html#features","title":"Features","text":" Template: Permit to save a template generated as a file (PHPWord_Template::saveAs()) - @RomanSyroeshko #56, #57 Word2007: Support sections page numbering - @gabrielbull Word2007: Added line height methods to mirror the line height settings in Word in the paragraph styling - @gabrielbull Word2007: Added support for page header & page footer height - @JillElaine #5 General: Add ability to manage line breaks after image insertion - @bskrtich #6, #66, #84 Template: Ability to limit number of replacements performed by setValue() method of Template class - @RomanSyroeshko #52, #53, #85 Table row: Repeat as header row & allow row to break across pages - @ivanlanin #48, #86 Table: Table width in percentage - @ivanlanin #48, #86 Font: Superscript and subscript - @ivanlanin #48, #86 Paragraph: Hanging paragraph - @ivanlanin #48, #86 Section: Multicolumn and section break - @ivanlanin #48, #86 Template: Ability to apply XSL style sheet to Template - @RomanSyroeshko #46, #47, #83 General: PHPWord_Shared_Font::pointSizeToTwips() converter - @ivanlanin #87 Paragraph: Ability to define normal paragraph style with PHPWord::setNormalStyle() - @ivanlanin #87 Paragraph: Ability to define parent style (basedOn) and style for following paragraph (next) - @ivanlanin #87 Clone table rows on the fly when using a template document - @jeroenmoors #44, #88 Initial addition of basic footnote support - @deds #16 Paragraph: Ability to define paragraph pagination: widow control, keep next, keep lines, and page break before - @ivanlanin #92 General: PHPWord_Style_Font refactoring - @ivanlanin #93 Font: Use points instead of halfpoints internally. Conversion to halfpoints done during XML Writing. - @ivanlanin #93 Paragraph: setTabs() function - @ivanlanin #92 General: Basic support for TextRun on ODT and RTF - @ivanlanin #99 Reader: Basic Reader for Word2007 - @ivanlanin #104 TextRun: Allow Text Break in Text Run - @bskrtich #109 General: Support for East Asian fontstyle - @jhfangying #111, #118 Image: Use exif_imagetype to check image format instead of extension name - @gabrielbull #114 General: Setting for XMLWriter Compatibility option - @bskrtich #103 MemoryImage: Allow remote image when allow_url_open = on - @ivanlanin #122 TextBreak: Allow font and paragraph style for text break - @ivanlanin #18 "},{"location":"changes/0.x/0.8.0.html#bugfixes","title":"Bugfixes","text":" Fixed bug with cell styling - @gabrielbull Fixed bug list items inside of cells - @gabrielbull Adding a value that contains \"&\" in a template breaks it - @SiebelsTim #51 Example in README.md is broken - @Progi1984 #89 General: PHPWord_Shared_Drawing::centimetersToPixels() conversion - @ivanlanin #94 Footnote: Corrupt DOCX reported by MS Word when sections > 1 and not every sections have footnote - @ivanlanin #125 "},{"location":"changes/0.x/0.8.0.html#miscellaneous","title":"Miscellaneous","text":""},{"location":"changes/0.x/0.8.1.html","title":"0.8.1 (17 Mar 2014)","text":"This is a bugfix release for image detection functionality.
Added fallback for computers that do not have exif_imagetype - @bskrtich, @gabrielbull "},{"location":"changes/0.x/0.9.0.html","title":"0.9.0 (26 Mar 2014)","text":"This release marked the transformation to namespaces (PHP 5.3+).
"},{"location":"changes/0.x/0.9.0.html#features","title":"Features","text":" Image: Ability to use remote or GD images using addImage()
on sections, headers, footer, cells, and textruns - @ivanlanin Header: Ability to use remote or GD images using addWatermark()
- @ivanlanin "},{"location":"changes/0.x/0.9.0.html#bugfixes","title":"Bugfixes","text":" Preserve text doesn't render correctly when the text is not the first word, e.g. 'Page {PAGE}' - @ivanlanin "},{"location":"changes/0.x/0.9.0.html#miscellaneous","title":"Miscellaneous","text":" Move documentation to Read The Docs - by @Progi1984 & @ivanlanin in #82 Reorganize and redesign samples folder - @ivanlanin #137 Use PhpOffice\\PhpWord
namespace for PSR compliance - @RomanSyroeshko @gabrielbull #159, #58 Restructure folders and change folder name Classes
to src
and Tests
to test
for PSR compliance - @RomanSyroeshko @gabrielbull Compliance to phpDocumentor - @ivanlanin Merge Style\\TableFull into Style\\Table. Style\\TableFull is deprecated - @ivanlanin #160 Merge Section\\MemoryImage into Section\\Image. Section\\Image is deprecated - @ivanlanin #160 "},{"location":"changes/0.x/0.9.1.html","title":"0.9.1 (27 Mar 2014)","text":"This is a bugfix release for PSR-4 compatibility.
Fixed PSR-4 composer autoloader - @AntonTyutin "},{"location":"changes/1.x/1.0.0.html","title":"1.0.0 (2022-11-15)","text":"Full Changelog
"},{"location":"changes/1.x/1.0.0.html#breaking-change","title":"BREAKING CHANGE","text":"Most deprecated things were dropped. See details in https://github.com/PHPOffice/PHPWord/commit/b9f1151bc6f90c276153c3c9dca10a5fc7f355fb.
"},{"location":"changes/1.x/1.0.0.html#dropped-classes","title":"Dropped classes:","text":" PhpOffice\\PhpWord\\Template
"},{"location":"changes/1.x/1.0.0.html#dropped-constants","title":"Dropped constants:","text":" PhpOffice\\PhpWord\\Style\\Font::UNDERLINE_DOTHASH
PhpOffice\\PhpWord\\Style\\Font::UNDERLINE_DOTHASHHEAVY
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_TOP
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_CENTER
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_BOTTOM
PhpOffice\\PhpWord\\Style\\Cell::VALIGN_BOTH
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_DOT
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_UNDERSCORE
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_LINE
PhpOffice\\PhpWord\\Style\\TOC::TABLEADER_NONE
PhpOffice\\PhpWord\\Style\\Table::WIDTH_AUTO
PhpOffice\\PhpWord\\Style\\Table::WIDTH_PERCENT
PhpOffice\\PhpWord\\Style\\Table::WIDTH_TWIP
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_NAME
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_SIZE
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_COLOR
PhpOffice\\PhpWord\\PhpWord::DEFAULT_FONT_CONTENT_TYPE
"},{"location":"changes/1.x/1.0.0.html#dropped-methods","title":"Dropped methods:","text":" PhpOffice\\PhpWord\\Ekement\\AbstractContainer::createTextRun()
PhpOffice\\PhpWord\\Ekement\\AbstractContainer::createFootnote()
PhpOffice\\PhpWord\\Ekement\\Footnote::getReferenceId()
PhpOffice\\PhpWord\\Ekement\\Footnote::setReferenceId()
PhpOffice\\PhpWord\\Ekement\\Image::getIsWatermark()
PhpOffice\\PhpWord\\Ekement\\Image::getIsMemImage()
PhpOffice\\PhpWord\\Ekement\\Link::getTarget()
PhpOffice\\PhpWord\\Ekement\\Link::getLinkSrc()
PhpOffice\\PhpWord\\Ekement\\Link::getLinkName()
PhpOffice\\PhpWord\\Ekement\\OLEObject::getObjectId()
PhpOffice\\PhpWord\\Ekement\\OLEObject::setObjectId()
PhpOffice\\PhpWord\\Ekement\\Section::getFootnotePropoperties()
PhpOffice\\PhpWord\\Ekement\\Section::setSettings()
PhpOffice\\PhpWord\\Ekement\\Section::getSettings()
PhpOffice\\PhpWord\\Ekement\\Section::createHeader()
PhpOffice\\PhpWord\\Ekement\\Section::createFooter()
PhpOffice\\PhpWord\\Ekement\\Section::getFooter()
PhpOffice\\PhpWord\\Media::addSectionMediaElement()
PhpOffice\\PhpWord\\Media::addSectionLinkElement()
PhpOffice\\PhpWord\\Media::getSectionMediaElements()
PhpOffice\\PhpWord\\Media::countSectionMediaElements()
PhpOffice\\PhpWord\\Media::addHeaderMediaElement()
PhpOffice\\PhpWord\\Media::countHeaderMediaElements()
PhpOffice\\PhpWord\\Media::getHeaderMediaElements()
PhpOffice\\PhpWord\\Media::addFooterMediaElement()
PhpOffice\\PhpWord\\Media::countFooterMediaElements()
PhpOffice\\PhpWord\\Media::getFooterMediaElements()
PhpOffice\\PhpWord\\PhpWord::getProtection()
PhpOffice\\PhpWord\\PhpWord::loadTemplate()
PhpOffice\\PhpWord\\PhpWord::createSection()
PhpOffice\\PhpWord\\PhpWord::getDocumentProperties()
PhpOffice\\PhpWord\\PhpWord::setDocumentProperties()
PhpOffice\\PhpWord\\Reader\\AbstractReader::getReadDataOnly()
PhpOffice\\PhpWord\\Settings::getCompatibility()
PhpOffice\\PhpWord\\Style\\AbstractStyle::setArrayStyle()
PhpOffice\\PhpWord\\Style\\Cell::getDefaultBorderColor()
PhpOffice\\PhpWord\\Style\\Font::getBold()
PhpOffice\\PhpWord\\Style\\Font::getItalic()
PhpOffice\\PhpWord\\Style\\Font::getSuperScript()
PhpOffice\\PhpWord\\Style\\Font::getSubScript()
PhpOffice\\PhpWord\\Style\\Font::getStrikethrough()
PhpOffice\\PhpWord\\Style\\Font::getParagraphStyle()
PhpOffice\\PhpWord\\Style\\Frame::getAlign()
PhpOffice\\PhpWord\\Style\\Frame::setAlign()
PhpOffice\\PhpWord\\Style\\NumberingLevel::getAlign()
PhpOffice\\PhpWord\\Style\\NumberingLevel::setAlign()
PhpOffice\\PhpWord\\Style\\Paragraph::getAlign()
PhpOffice\\PhpWord\\Style\\Paragraph::setAlign()
PhpOffice\\PhpWord\\Style\\Paragraph::getWidowControl()
PhpOffice\\PhpWord\\Style\\Paragraph::getKeepNext()
PhpOffice\\PhpWord\\Style\\Paragraph::getKeepLines()
PhpOffice\\PhpWord\\Style\\Paragraph::getPageBreakBefore()
PhpOffice\\PhpWord\\Style\\Row::getTblHeader()
PhpOffice\\PhpWord\\Style\\Row::isTblHeader()
PhpOffice\\PhpWord\\Style\\Row::getCantSplit()
PhpOffice\\PhpWord\\Style\\Row::getExactHeight()
PhpOffice\\PhpWord\\Style\\Spacing::getRule()
PhpOffice\\PhpWord\\Style\\Spacing::setRule()
PhpOffice\\PhpWord\\Style\\Table::getAlign()
PhpOffice\\PhpWord\\Style\\Table::setAlign()
PhpOffice\\PhpWord\\Writer\\AbstractWriter::getUseDiskCaching()
PhpOffice\\PhpWord\\Writer\\HTML::writeDocument()
"},{"location":"changes/1.x/1.0.0.html#bug-fixes","title":"Bug fixes","text":" Multiple PHP 8.1 fixes loadConfig
returns config that was actually applied HTML Reader : Override inline style on HTML attribute for table HTML Reader : Use border
attribute for tables HTML Reader : Style page-break-after in paragraph HTML Reader : Heading in Text Run is not allowed "},{"location":"changes/1.x/1.0.0.html#miscellaneous","title":"Miscellaneous","text":" Drop support for PHP 7.0 and older "},{"location":"changes/1.x/1.1.0.html","title":"1.1.0 (2023-05-30)","text":"Full Changelog
"},{"location":"changes/1.x/1.1.0.html#enhancements","title":"Enhancements","text":" Introduce deleteRow() method for TemplateProcessor HTML Reader: Add basic support for CSS Style Tag Allow customizing macro syntax in TemplateProcessor Add background color support for textboxes Add softhyphen support to word reader Add support table row height when importing HTML Add support for fractional font sizes Added image quality support, with the maximum quality as default Support for reading nested tables "},{"location":"changes/1.x/1.1.0.html#bug-fixes","title":"Bug fixes","text":" DOCX reader: Read empty vmerge Fixed setting width of Cell Style "},{"location":"changes/1.x/1.1.0.html#miscellaneous","title":"Miscellaneous","text":" master
is the new default branch "},{"location":"changes/1.x/1.2.0.html","title":"1.2.0","text":"Full Changelog
"},{"location":"changes/1.x/1.2.0.html#enhancements","title":"Enhancements","text":" Word2007 Reader/Writer : Added noWrap table cell property by @kernusr in GH-2359 HTML Reader : Support for font-variant: small-caps
by @cambraca in GH-2117 Improved TextDirection for styling a cell by @terryzwt in GH-2429 Word2007 Reader : Added option to disable loading images by @aelliott1485 in GH-2450 HTML Writer : Added border-spacing to default styles for table by @kernusr in GH-2451 Word2007 Reader : Support for table cell borders and margins by @kernusr in GH-2454 PDF Writer : Add config for defining the default font by @MikeMaldini in #2262 & #2468 Word2007 Reader : Added support for Comments by @shaedrich in #2161 & #2469 Word2007 Reader/Writer: Permit book-fold printing by @potofcoffee in #2225 & #2470 Word2007 Writer : Add PageNumber to TOC by @jet-desk in #1652 & #2471 Word2007 Reader/Writer + ODText Reader/Writer : Add Element Formula in by @Progi1984 in #2477 Add Support for Various Missing Features in HTML Writer by @oleibman in #2475 Fixed addHTML (text-align:right in html is not handled correctly) in #2467 HTML Writer : Added ability to specify generic fallback font HTML Writer : Added ability to specify handling of whitespace HTML Writer : Added support for Table Border style, color, and size HTML Writer : Added support for empty paragraphs (Word writer permits, browsers generally suppress) HTML Writer : Paragraph style should support indentation, line-height, page-break-before HTML Writer : Removed margin-top/bottom when spacing is null in Paragraph style HTML Writer : Added default paragraph style to all paragraphs, as well as class Normal HTML Writer : Use css @page and page declarations for sections HTML Writer : Wrap sections in div, with page break before each (except first) PDF Writer : Added support for PageBreak PDF Writer : Added callback for modifying the HTML Added Support for Language, both for document overall and individual text elements Template : Set a checkbox by @nxtpge in #2509 ODText / RTF / Word2007 Writer : Add field FILENAME by @milkyway-git in #2510 ODText Reader : Improve Section Reader by @oleibman in #2507 "},{"location":"changes/1.x/1.2.0.html#bug-fixes","title":"Bug fixes","text":" Fixed wrong mimetype for docx files by @gamerlv in GH-2416 Word2007 Reader : Read hyperlingks in headings by @hannesdorn in GH-2433 PclZip : strtr using empty string by @spl1nes in GH-2432 Fixed PHP 8.2 deprecated about Allow access to an undefined property by @DAdq26 in GH-2440 Template Processor : Fixed choose dimention for Float Value by @gdevilbat in GH-2449 HTML Parser : Fix image parsing from url without extension by @JokubasR in GH-2459 Word2007 Reader : Fixed reading of Office365 DocX file by @filippotoso & @lfglopes in #2506 Word2007 Reader : Check for null on $fontDefaultStyle by @spatialfree in #2513 "},{"location":"changes/1.x/1.2.0.html#miscellaneous","title":"Miscellaneous","text":" Added PHPStan by @PowerKiKi in GH-2405 Bump symfony/process from 4.4.44 to 5.4.26 by @dependabot in GH-2431 Bump phpunit/phpunit from 9.6.8 to 9.6.10 by @dependabot in GH-2430 Added Coveralls.io by @Progi1984 in GH-2452 Added support for PHP 8.2 & PHP 8.3 by @Progi1984 in GH-2453 Moved documention from ReadTheDocs to MkDocs & Github Pages by @Progi1984 in GH-2465 Bump phpstan/phpstan-phpunit from 1.3.13 to 1.3.14 by @dependabot in #2457 Bump symfony/process from 5.4.26 to 5.4.28 by @dependabot in #2456 Bump phpunit/phpunit from 9.6.10 to 9.6.11 by @dependabot in #2455 Remove deprecated utf8_encode in PHP 8.2 by @mhcwebdesign in #2447 & #2472 Bump mpdf/mpdf from 8.1.6 to 8.2.0 by @dependabot in #2480 Bump phpunit/phpunit from 9.6.11 to 9.6.13 by @dependabot in #2481 Bump tecnickcom/tcpdf from 6.6.2 to 6.6.5 by @dependabot in #2482 Bump phpmd/phpmd from 2.13.0 to 2.14.1 by @dependabot in #2483 Bump phpstan/phpstan-phpunit from 1.3.14 to 1.3.15 by @dependabot in #2494 "},{"location":"changes/1.x/1.2.0.html#bc-breaks","title":"BC Breaks","text":" Removed dependency laminas/laminas-escaper
Unintended Break TemplateProcessor Does Not Persist File After Destruct. #2539 To be fixed by [#2545](https://github.com/PHPOffice/PHPWord/pull/2545 "},{"location":"changes/1.x/1.3.0.html","title":"1.3.0","text":"Full Changelog
"},{"location":"changes/1.x/1.3.0.html#enhancements","title":"Enhancements","text":" IOFactory : Added extractVariables method to extract variables from a document @sibalonat in #2515 PDF Writer : Documented how to specify a PDF renderer, when working with the PDF writer, as well as the three available choices by @settermjd in #2642 Word2007 Reader: Support for Paragraph Border Style by @damienfa in #2651 Word2007 Writer: Support for field REF by @crystoline in #2652 Word2007 Reader : Support for FormFields by @vincentKool in #2653 RTF Writer : Support for Table Border Style fixing #345 by @Progi1984 in #2656 Word2007 Reader: Support the page break () by @stanolacko in #2662 MsDoc Reader: Support for UTF-8 characters by [@Progi1984] fixing #881, #1454, #1817, #1927, #2383, #2565 in #2664 Word2007 Writer: Added support for multiples comment for the same text by @rodrigoq fixing #2109 in #2665 "},{"location":"changes/1.x/1.3.0.html#bug-fixes","title":"Bug fixes","text":" MsDoc Reader : Correct Font Size Calculation by @oleibman fixing #2526 in #2531 Html Reader : Process Titles as Headings not Paragraphs @0b10011 and @oleibman Issue #1692 PR #2533 Generate Table Cell if Row Doesn't Have Any @oleibman fixing #2505 in #2516 TemplateProcessor Persist File After Destruct @oleibman fixing #2539 in #2545 TemplateProcessor Destructor Problem with Php7 @oleibman fixing #2548 in #2554 bug: TemplateProcessor fix multiline values @gimler fixing #268, #2323 and #2486 in #2522 32-bit Problem in PasswordEncoder @oleibman fixing #2550 in #2551 Typo : Fix hardcoded macro chars in TemplateProcessor method @glafarge in #2618 XML Reader : Prevent fatal errors when opening corrupt files or \"doc\" files @mmcev106 in #2626 Documentation : Updated Comment element by @laminga in #2650 HTML Reader : Read width & height attributes in points fixing #2589 by @Progi1984 in #2654 Template Processor : Fixed bad naming of variables fixing #2586 by @Progi1984 in #2655 Word2007 Writer : Fix first footnote appearing as separator #2634 by @jacksleight in #2635 Template Processor : Fixed images with transparent backgrounds displaying a white background by @ElwynVdb in #2638 HTML Writer : Fixed rowspan for tables by @andomiell in #2659 Word2007 Writer : Fixed StrikeThrough property by @noec764 fixing #1722 & #1693 in #2661 HTML Reader : Fixed link without href by @asmundstavdahl fixing #1562 in #2663 "},{"location":"changes/1.x/1.3.0.html#miscellaneous","title":"Miscellaneous","text":" Bump dompdf/dompdf from 2.0.3 to 2.0.4 by @dependabot in #2530 Bump phpunit/phpunit from 9.6.13 to 9.6.14 by @dependabot in #2519 Bump mpdf/mpdf from 8.2.0 to 8.2.2 by @dependabot in #2518 Bump phpmd/phpmd from 2.14.1 to 2.15.0 by @dependabot in #2538 Bump phpunit/phpunit from 9.6.14 to 9.6.15 by @dependabot in #2537 Bump symfony/process from 5.4.28 to 5.4.34 by @dependabot in #2536 Allow rgb() when converting Html by @oleibman fixing #2508 in #2512 Improved Issue Template by @Progi1984 in #2609 Bump phpoffice/math from 0.1.0 to 0.2.0 by @Progi1984 fixing #2559 in #2645 Bump tecnickcom/tcpdf from 6.6.5 to 6.7.5 by @dependabot in #2646 Bump mpdf/mpdf from 8.2.2 to 8.2.4 by @dependabot in #2647 Bump phenx/php-svg-lib from 0.5.1 to 0.5.4 by @dependabot in #2649 Bump phpstan/phpstan-phpunit from 1.3.15 to 1.4.0 by @dependabot in #2648 "},{"location":"changes/1.x/1.3.0.html#bc-breaks","title":"BC Breaks","text":""},{"location":"changes/1.x/1.4.0.html","title":"1.4.0 (WIP)","text":"Full Changelog
"},{"location":"changes/1.x/1.4.0.html#enhancements","title":"Enhancements","text":" Writer ODText: Support for ListItemRun by @Progi1984 fixing #2159, #2620 in #2669 Writer HTML: Support for vAlign in Tables by @SpraxDev in #2675 "},{"location":"changes/1.x/1.4.0.html#bug-fixes","title":"Bug fixes","text":" Writer ODText: Support for images inside a textRun by @Progi1984 fixing #2240 in #2668 Allow vAlign and vMerge on Style\\Cell to be set to null by @SpraxDev fixing #2673 in #2676 "},{"location":"changes/1.x/1.4.0.html#miscellaneous","title":"Miscellaneous","text":" Bump dompdf/dompdf from 2.0.4 to 3.0.0 by @dependabot fixing #2621 in #2666 "},{"location":"changes/1.x/1.4.0.html#bc-breaks","title":"BC Breaks","text":""},{"location":"usage/containers.html","title":"Containers","text":"Containers are objects where you can put elements (texts, lists, tables, etc). There are 3 main containers, i.e. sections, headers, and footers.There are 3 elements that can also act as containers, i.e. textruns, table cells, and footnotes.
"},{"location":"usage/containers.html#sections","title":"Sections","text":"Every visible element in word is placed inside of a section. To create a section, use the following code:
<?php\n\n$section = $phpWord->addSection($sectionStyle);\n
The $sectionStyle
is an optional associative array that sets the section. Example:
<?php\n\n$sectionStyle = array(\n 'orientation' => 'landscape',\n 'marginTop' => 600,\n 'colsNum' => 2,\n);\n
"},{"location":"usage/containers.html#page-number","title":"Page number","text":"You can change a section page number by using the pageNumberingStart
style of the section.
<?php\n\n// Method 1\n$section = $phpWord->addSection(array('pageNumberingStart' => 1));\n\n// Method 2\n$section = $phpWord->addSection();\n$section->getStyle()->setPageNumberingStart(1);\n
"},{"location":"usage/containers.html#multicolumn","title":"Multicolumn","text":"You can change a section layout to multicolumn (like in a newspaper) by using the breakType
and colsNum
style of the section.
<?php\n\n// Method 1\n$section = $phpWord->addSection(array('breakType' => 'continuous', 'colsNum' => 2));\n\n// Method 2\n$section = $phpWord->addSection();\n$section->getStyle()->setBreakType('continuous');\n$section->getStyle()->setColsNum(2);\n
"},{"location":"usage/containers.html#line-numbering","title":"Line numbering","text":"You can apply line numbering to a section by using the lineNumbering
style of the section.
<?php\n\n// Method 1\n$section = $phpWord->addSection(array('lineNumbering' => array()));\n\n// Method 2\n$section = $phpWord->addSection();\n$section->getStyle()->setLineNumbering(array());\n
Below are the properties of the line numbering style.
start
Line numbering starting value increment
Line number increments distance
Distance between text and line numbering in twip restart
Line numbering restart setting continuous|newPage|newSection "},{"location":"usage/containers.html#headers","title":"Headers","text":"Each section can have its own header reference. To create a header use the addHeader
method:
<?php\n\n$header = $section->addHeader();\n
Be sure to save the result in a local object. You can use all elements that are available for the footer. See \"Footer\" section for detail. Additionally, only inside of the header reference you can add watermarks or background pictures. See \"Watermarks\" section.
You can pass an optional parameter to specify where the header/footer should be applied, it can be
Footer::AUTO
default, all pages except if overridden by first or even Footer::FIRST
each first page of the section Footer::EVEN
each even page of the section. Will only be applied if the evenAndOddHeaders is set to true in phpWord->settings To change the evenAndOddHeaders use the getSettings
method to return the Settings object, and then call the setEvenAndOddHeaders
method:
<?php\n\n$phpWord->getSettings()->setEvenAndOddHeaders(true);\n
"},{"location":"usage/containers.html#footers","title":"Footers","text":"Each section can have its own footer reference. To create a footer, use the addFooter
method:
<?php\n\n$footer = $section->addFooter();\n
Be sure to save the result in a local object to add elements to a footer. You can add the following elements to footers:
Texts addText
and createTextrun
Text breaks Images Tables Preserve text See the \"Elements\" section for the detail of each elements.
"},{"location":"usage/containers.html#other-containers","title":"Other containers","text":"Textruns, table cells, and footnotes are elements that can also act as containers. See the corresponding \"Elements\" section for the detail of each elements.
"},{"location":"usage/introduction.html","title":"Introduction","text":""},{"location":"usage/introduction.html#basic-example","title":"Basic example","text":"The following is a basic example of the PHPWord library. More examples are provided in the samples folder.
<?php\nrequire_once 'bootstrap.php';\n\n// Creating the new document...\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n\n/* Note: any element you append to a document must reside inside of a Section. */\n\n// Adding an empty Section to the document...\n$section = $phpWord->addSection();\n// Adding Text element to the Section having font styled by default...\n$section->addText(\n '\"Learn from yesterday, live for today, hope for tomorrow. '\n . 'The important thing is not to stop questioning.\" '\n . '(Albert Einstein)'\n);\n\n/*\n * Note: it's possible to customize font style of the Text element you add in three ways:\n * - inline;\n * - using named font style (new font style object will be implicitly created);\n * - using explicitly created font style object.\n */\n\n// Adding Text element with font customized inline...\n$section->addText(\n '\"Great achievement is usually born of great sacrifice, '\n . 'and is never the result of selfishness.\" '\n . '(Napoleon Hill)',\n array('name' => 'Tahoma', 'size' => 10)\n);\n\n// Adding Text element with font customized using named font style...\n$fontStyleName = 'oneUserDefinedStyle';\n$phpWord->addFontStyle(\n $fontStyleName,\n array('name' => 'Tahoma', 'size' => 10, 'color' => '1B2232', 'bold' => true)\n);\n$section->addText(\n '\"The greatest accomplishment is not in never falling, '\n . 'but in rising again after you fall.\" '\n . '(Vince Lombardi)',\n $fontStyleName\n);\n\n// Adding Text element with font customized using explicitly created font style object...\n$fontStyle = new \\PhpOffice\\PhpWord\\Style\\Font();\n$fontStyle->setBold(true);\n$fontStyle->setName('Tahoma');\n$fontStyle->setSize(13);\n$myTextElement = $section->addText('\"Believe you can and you\\'re halfway there.\" (Theodor Roosevelt)');\n$myTextElement->setFontStyle($fontStyle);\n\n// Saving the document as OOXML file...\n$objWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'Word2007');\n$objWriter->save('helloWorld.docx');\n\n// Saving the document as ODF file...\n$objWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'ODText');\n$objWriter->save('helloWorld.odt');\n\n// Saving the document as HTML file...\n$objWriter = \\PhpOffice\\PhpWord\\IOFactory::createWriter($phpWord, 'HTML');\n$objWriter->save('helloWorld.html');\n\n/* Note: we skip RTF, because it's not XML-based and requires a different example. */\n/* Note: we skip PDF, because \"HTML-to-PDF\" approach is used to create PDF documents. */\n
"},{"location":"usage/introduction.html#phpword-settings","title":"PHPWord Settings","text":"The PhpOffice\\PhpWord\\Settings
class provides some options that will affect the behavior of PHPWord. Below are the options.
"},{"location":"usage/introduction.html#xml-writer-compatibility","title":"XML Writer compatibility","text":"This option sets XMLWriter::setIndent and XMLWriter::setIndentString. The default value of this option is true
(compatible), which is required for OpenOffice to render OOXML document correctly. You can set this option to false
during development to make the resulting XML file easier to read.
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setCompatibility(false);\n
"},{"location":"usage/introduction.html#zip-class","title":"Zip class","text":"By default, PHPWord uses Zip extension to deal with ZIP compressed archives and files inside them. If you can't have Zip extension installed on your server, you can use pure PHP library alternative, `PclZip``, which is included in PHPWord.
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setZipClass(\\PhpOffice\\PhpWord\\Settings::PCLZIP);\n
"},{"location":"usage/introduction.html#output-escaping","title":"Output escaping","text":"Writing documents of some formats, especially XML-based, requires correct output escaping. Without it your document may become broken when you put special characters like ampersand, quotes, and others in it.
Escaping can be performed in two ways: outside of the library by a software developer and inside of the library by built-in mechanism. By default, the built-in mechanism is disabled for backward compatibility with versions prior to v0.13.0. To turn it on set outputEscapingEnabled
option to true
in your PHPWord configuration file or use the following instruction at runtime:
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setOutputEscapingEnabled(true);\n
"},{"location":"usage/introduction.html#default-paper","title":"Default Paper","text":"By default, all sections of the document will print on A4 paper. You can alter the default paper by using the following function:
<?php\n\n\\PhpOffice\\PhpWord\\Settings::setDefaultPaper('Letter');\n
"},{"location":"usage/introduction.html#default-font","title":"Default font","text":"By default, every text appears in Arial 10 point. You can alter the default font by using the following two functions:
<?php\n\n$phpWord->setDefaultFontName('Times New Roman');\n$phpWord->setDefaultFontSize(12);\n
"},{"location":"usage/introduction.html#document-settings","title":"Document settings","text":"Settings for the generated document can be set using $phpWord->getSettings()
"},{"location":"usage/introduction.html#magnification-setting","title":"Magnification Setting","text":"The default zoom value is 100 percent. This can be changed either to another percentage
<?php\n\n$phpWord->getSettings()->setZoom(75);\n
Or to predefined values fullPage
, bestFit
, textFit
<?php\n\n$phpWord->getSettings()->setZoom(Zoom::BEST_FIT);\n
"},{"location":"usage/introduction.html#mirroring-the-page-margins","title":"Mirroring the Page Margins","text":"Use mirror margins to set up facing pages for double-sided documents, such as books or magazines.
<?php\n\n$phpWord->getSettings()->setMirrorMargins(true);\n
Don't forget to set both paper size and page size
For example, to print a document on A4 paper (landscape) and fold it into A5 pages (portrait), use this section style:
<?php\n\nuse PhpOffice\\PhpWord\\Shared\\Converter;\n\n$phpWord->getSettings()->setMirrorMargins(true);\n$phpWord->addSection([\n 'paperSize' => 'A4',\n 'orientation' => 'landscape',\n 'pageSizeW' => Converter::cmToTwip(14.85),\n 'pageSizeH' => Converter::cmToTwip(21),\n]);\n
"},{"location":"usage/introduction.html#printing-as-folded-booklet","title":"Printing as folded booklet","text":"Use book-fold printing to set up documents to be printed as foldable pages.
<?php\n\n$phpWord->getSettings()->setBookFoldPrinting(true);\n
"},{"location":"usage/introduction.html#spelling-and-grammatical-checks","title":"Spelling and grammatical checks","text":"By default spelling and grammatical errors are shown as soon as you open a word document. For big documents this can slow down the opening of the document. You can hide the spelling and/or grammatical errors with:
<?php\n\n$phpWord->getSettings()->setHideGrammaticalErrors(true);\n$phpWord->getSettings()->setHideSpellingErrors(true);\n
You can also specify the status of the spell and grammar checks, marking spelling or grammar as dirty will force a re-check when opening the document.
<?php\n\n$proofState = new \\PhpOffice\\PhpWord\\ComplexType\\ProofState();\n$proofState->setGrammar(\\PhpOffice\\PhpWord\\ComplexType\\ProofState::CLEAN);\n$proofState->setSpelling(\\PhpOffice\\PhpWord\\ComplexType\\ProofState::DIRTY);\n\n$phpWord->getSettings()->setProofState($proofState);\n
"},{"location":"usage/introduction.html#track-revisions","title":"Track Revisions","text":"Track changes can be activated using setTrackRevisions
, you can furture specify
Not to use move syntax, instead moved items will be seen as deleted in one place and added in another Not track formatting revisions <?php\n\n$phpWord->getSettings()->setTrackRevisions(true);\n$phpWord->getSettings()->setDoNotTrackMoves(true);\n$phpWord->getSettings()->setDoNotTrackFormatting(true);\n
"},{"location":"usage/introduction.html#decimal-symbol","title":"Decimal Symbol","text":"The default symbol to represent a decimal figure is the .
in english. In french you might want to change it to ,
for instance.
<?php\n\n$phpWord->getSettings()->setDecimalSymbol(',');\n
"},{"location":"usage/introduction.html#document-language","title":"Document Language","text":"The default language of the document can be change with the following.
<?php\n\n$phpWord->getSettings()->setThemeFontLang(new Language(Language::FR_BE));\n
Language
has 3 parameters, one for Latin languages, one for East Asian languages and one for Complex (Bi-Directional) languages. A couple of language codes are provided in the PhpOffice\\PhpWord\\Style\\Language
class but any valid code/ID can be used.
In case you are generating an RTF document the language need to be set differently.
<?php\n\n$lang = new Language();\n$lang->setLangId(Language::EN_GB_ID);\n$phpWord->getSettings()->setThemeFontLang($lang);\n
"},{"location":"usage/introduction.html#document-information","title":"Document information","text":"You can set the document information such as title, creator, and company name. Use the following functions:
<?php\n\n$properties = $phpWord->getDocInfo();\n$properties->setCreator('My name');\n$properties->setCompany('My factory');\n$properties->setTitle('My title');\n$properties->setDescription('My description');\n$properties->setCategory('My category');\n$properties->setLastModifiedBy('My name');\n$properties->setCreated(mktime(0, 0, 0, 3, 12, 2014));\n$properties->setModified(mktime(0, 0, 0, 3, 14, 2014));\n$properties->setSubject('My subject');\n$properties->setKeywords('my, key, word');\n
"},{"location":"usage/introduction.html#measurement-units","title":"Measurement units","text":"The base length unit in Open Office XML is twip. Twip means \"TWentieth of an Inch Point\", i.e. 1 twip = 1/1440 inch.
You can use PHPWord helper functions to convert inches, centimeters, or points to twip.
<?php\n\n// Paragraph with 6 points space after\n$phpWord->addParagraphStyle('My Style', array(\n 'spaceAfter' => \\PhpOffice\\PhpWord\\Shared\\Converter::pointToTwip(6))\n);\n\n$section = $phpWord->addSection();\n$sectionStyle = $section->getStyle();\n// half inch left margin\n$sectionStyle->setMarginLeft(\\PhpOffice\\PhpWord\\Shared\\Converter::inchToTwip(.5));\n// 2 cm right margin\n$sectionStyle->setMarginRight(\\PhpOffice\\PhpWord\\Shared\\Converter::cmToTwip(2));\n
"},{"location":"usage/introduction.html#document-protection","title":"Document protection","text":"The document (or parts of it) can be password protected.
<?php\n\n$documentProtection = $phpWord->getSettings()->getDocumentProtection();\n$documentProtection->setEditing(DocProtect::READ_ONLY);\n$documentProtection->setPassword('myPassword');\n
"},{"location":"usage/introduction.html#automatically-recalculate-fields-on-open","title":"Automatically Recalculate Fields on Open","text":"To force an update of the fields present in the document, set updateFields to true
<?php\n\n$phpWord->getSettings()->setUpdateFields(true);\n
"},{"location":"usage/introduction.html#hyphenation","title":"Hyphenation","text":"Hyphenation describes the process of breaking words with hyphens. There are several options to control hyphenation.
"},{"location":"usage/introduction.html#auto-hyphenation","title":"Auto hyphenation","text":"To automatically hyphenate text set autoHyphenation
to true
.
<?php\n\n$phpWord->getSettings()->setAutoHyphenation(true);\n
"},{"location":"usage/introduction.html#consecutive-hyphen-limit","title":"Consecutive Hyphen Limit","text":"The maximum number of consecutive lines of text ending with a hyphen can be controlled by the consecutiveHyphenLimit
option. There is no limit if the option is not set or the provided value is 0
.
<?php\n\n$phpWord->getSettings()->setConsecutiveHyphenLimit(2);\n
"},{"location":"usage/introduction.html#hyphenation-zone","title":"Hyphenation Zone","text":"The hyphenation zone (in twip) is the allowed amount of whitespace before hyphenation is applied. The smaller the hyphenation zone the more words are hyphenated. Or in other words, the wider the hyphenation zone the less words are hyphenated.
<?php\n\n$phpWord->getSettings()->setHyphenationZone(\\PhpOffice\\PhpWord\\Shared\\Converter::cmToTwip(1));\n
"},{"location":"usage/introduction.html#hyphenate-caps","title":"Hyphenate Caps","text":"To control whether or not words in all capital letters shall be hyphenated use the doNotHyphenateCaps
option.
<?php\n\n$phpWord->getSettings()->setDoNotHyphenateCaps(true);\n
"},{"location":"usage/readers.html","title":"Readers","text":""},{"location":"usage/readers.html#html","title":"HTML","text":"The name of the reader is HTML
.
<?php\n\n$reader = IOFactory::createReader('HTML');\n$reader->load(__DIR__ . '/sample.html');\n
"},{"location":"usage/readers.html#msdoc","title":"MsDoc","text":"The name of the reader is MsDoc
.
<?php\n\n$reader = IOFactory::createReader('MsDoc');\n$reader->load(__DIR__ . '/sample.doc');\n
"},{"location":"usage/readers.html#odtext","title":"ODText","text":"The name of the reader is ODText
.
<?php\n\n$reader = IOFactory::createReader('ODText');\n$reader->load(__DIR__ . '/sample.odt');\n
"},{"location":"usage/readers.html#rtf","title":"RTF","text":"The name of the reader is RTF
.
<?php\n\n$reader = IOFactory::createReader('RTF');\n$reader->load(__DIR__ . '/sample.rtf');\n
"},{"location":"usage/readers.html#word2007","title":"Word2007","text":"The name of the reader is Word2007
.
<?php\n\n$reader = IOFactory::createReader('Word2007');\n$reader->load(__DIR__ . '/sample.docx');\n
"},{"location":"usage/template.html","title":"Template processing","text":"You can create an OOXML document template with included search-patterns (macros) which can be replaced by any value you wish. Only single-line values can be replaced. By default Macros are defined like this: ${search-pattern}
but you can define custom macros. To load a template file, create a new instance of the TemplateProcessor.
<?php\n\n$templateProcessor = new TemplateProcessor('Template.docx');\n
"},{"location":"usage/template.html#setvalue","title":"setValue","text":"Given a template containing
Hello ${firstname} ${lastname}!\n
The following will replace ${firstname}
with John
, and ${lastname}
with Doe
. The resulting document will now contain Hello John Doe!
<?php\n\n$templateProcessor->setValue('firstname', 'John');\n$templateProcessor->setValue('lastname', 'Doe');\n
"},{"location":"usage/template.html#setvalues","title":"setValues","text":"You can also set multiple values by passing all of them in an array.
<?php\n\n$templateProcessor->setValues(array('firstname' => 'John', 'lastname' => 'Doe'));\n
"},{"location":"usage/template.html#setcheckbox","title":"setCheckbox","text":"Given a template containing a checkbox control with the title or tag named:
${checkbox}\n
The following will check the checkbox: <?php\n\n$templateProcessor->setCheckbox('checkbox', true);\n
To add a checkbox and set its title or tag in a template
Go to Developer tab > Controls group Select the Check Box Content Control Right-click on your checkbox Click on Properties Set the title or the tag These steps may change regarding the version of Microsoft Word used.
"},{"location":"usage/template.html#setmacroopeningchars","title":"setMacroOpeningChars","text":"You can define a custom opening macro. The following will set {#
as the opening search pattern.
<?php\n\n$templateProcessor->setMacroOpeningChars('{#');\n
"},{"location":"usage/template.html#setmacroclosingchars","title":"setMacroClosingChars","text":"You can define a custom closing macro. The following will set #}
as the closing search pattern.
<?php\n\n$templateProcessor->setMacroClosingChars('#}');\n
"},{"location":"usage/template.html#setmacrochars","title":"setMacroChars","text":"You can define a custom opening and closing macro at the same time . The following will set the search-pattern like this: {#search-pattern#}
.
<?php\n\n$templateProcessor->setMacroChars('{#', '#}');\n
"},{"location":"usage/template.html#setimagevalue","title":"setImageValue","text":"The search-pattern model for images can be like: - ${search-image-pattern}
- ${search-image-pattern:[width]:[height]:[ratio]}
- ${search-image-pattern:[width]x[height]}
- ${search-image-pattern:size=[width]x[height]}
- ${search-image-pattern:width=[width]:height=[height]:ratio=false}
Where: - [width] and [height] can be just numbers or numbers with measure, which supported by Word (cm, mm, in, pt, pc, px, %, em, ex) - [ratio] uses only for false
, -
or f
to turn off respect aspect ration of image. By default template image size uses as 'container' size.
Example:
${CompanyLogo}\n${UserLogo:50:50} ${Name} - ${City} - ${Street}\n
<?php\n\n$templateProcessor = new TemplateProcessor('Template.docx');\n$templateProcessor->setValue('Name', 'John Doe');\n$templateProcessor->setValue(array('City', 'Street'), array('Detroit', '12th Street'));\n\n$templateProcessor->setImageValue('CompanyLogo', 'path/to/company/logo.png');\n$templateProcessor->setImageValue('UserLogo', array('path' => 'path/to/logo.png', 'width' => 100, 'height' => 100, 'ratio' => false));\n$templateProcessor->setImageValue('FeatureImage', function () {\n // Closure will only be executed if the replacement tag is found in the template\n\n return array('path' => SlowFeatureImageGenerator::make(), 'width' => 100, 'height' => 100, 'ratio' => false);\n});\n
"},{"location":"usage/template.html#cloneblock","title":"cloneBlock","text":"Given a template containing See Sample_23_TemplateBlock.php
for an example.
${block_name}\nCustomer: ${customer_name}\nAddress: ${customer_address}\n${/block_name}\n
The following will duplicate everything between ${block_name}
and ${/block_name}
3 times.
<?php\n\n$templateProcessor->cloneBlock('block_name', 3, true, true);\n
The last parameter will rename any macro defined inside the block and add #1, #2, #3 ... to the macro name. The result will be
Customer: ${customer_name#1}\nAddress: ${customer_address#1}\n\nCustomer: ${customer_name#2}\nAddress: ${customer_address#2}\n\nCustomer: ${customer_name#3}\nAddress: ${customer_address#3}\n
It is also possible to pass an array with the values to replace the marcros with. If an array with replacements is passed, the count
argument is ignored, it is the size of the array that counts.
<?php\n\n$replacements = array(\n array('customer_name' => 'Batman', 'customer_address' => 'Gotham City'),\n array('customer_name' => 'Superman', 'customer_address' => 'Metropolis'),\n);\n$templateProcessor->cloneBlock('block_name', 0, true, false, $replacements);\n
The result will then be
Customer: Batman\nAddress: Gotham City\n\nCustomer: Superman\nAddress: Metropolis\n
"},{"location":"usage/template.html#replaceblock","title":"replaceBlock","text":"Given a template containing
${block_name}\nThis block content will be replaced\n${/block_name}\n
The following will replace everything between ${block_name}
and ${/block_name}
with the value passed.
<?php\n\n$templateProcessor->replaceBlock('block_name', 'This is the replacement text.');\n
"},{"location":"usage/template.html#deleteblock","title":"deleteBlock","text":"Same as previous, but it deletes the block
<?php\n\n$templateProcessor->deleteBlock('block_name');\n
"},{"location":"usage/template.html#clonerow","title":"cloneRow","text":"Clones a table row in a template document. See Sample_07_TemplateCloneRow.php
for an example.
+-----------+----------------+\n| ${userId} | ${userName} |\n| |----------------+\n| | ${userAddress} |\n+-----------+----------------+\n
<?php\n\n$templateProcessor->cloneRow('userId', 2);\n
Will result in
+-------------+------------------+\n| ${userId#1} | ${userName#1} |\n| |------------------+\n| | ${userAddress#1} |\n+-------------+------------------+\n| ${userId#2} | ${userName#2} |\n| |------------------+\n| | ${userAddress#2} |\n+-------------+------------------+\n
"},{"location":"usage/template.html#clonerowandsetvalues","title":"cloneRowAndSetValues","text":"Finds a row in a table row identified by $search
param and clones it as many times as there are entries in $values
.
+-----------+----------------+\n| ${userId} | ${userName} |\n| |----------------+\n| | ${userAddress} |\n+-----------+----------------+\n
<?php\n\n$values = [\n ['userId' => 1, 'userName' => 'Batman', 'userAddress' => 'Gotham City'],\n ['userId' => 2, 'userName' => 'Superman', 'userAddress' => 'Metropolis'],\n];\n$templateProcessor->cloneRowAndSetValues('userId', $values);\n
Will result in
+---+-------------+\n| 1 | Batman |\n| |-------------+\n| | Gotham City |\n+---+-------------+\n| 2 | Superman |\n| |-------------+\n| | Metropolis |\n+---+-------------+\n
"},{"location":"usage/template.html#applyxslstylesheet","title":"applyXslStyleSheet","text":"Applies the XSL stylesheet passed to header part, footer part and main part
<?php\n\n$xslDomDocument = new \\DOMDocument();\n$xslDomDocument->load('/path/to/my/stylesheet.xsl');\n$templateProcessor->applyXslStyleSheet($xslDomDocument);\n
"},{"location":"usage/template.html#setcomplexvalue","title":"setComplexValue","text":"Replaces a ${macro} with the ComplexType passed. See Sample_40_TemplateSetComplexValue.php
for examples.
<?php\n\n$inline = new TextRun();\n$inline->addText('by a red italic text', array('italic' => true, 'color' => 'red'));\n$templateProcessor->setComplexValue('inline', $inline);\n
"},{"location":"usage/template.html#setcomplexblock","title":"setComplexBlock","text":"Replaces a ${macro} with the ComplexType passed. See Sample_40_TemplateSetComplexValue.php
for examples.
<?php\n\n$table = new Table(array('borderSize' => 12, 'borderColor' => 'green', 'width' => 6000, 'unit' => TblWidth::TWIP));\n$table->addRow();\n$table->addCell(150)->addText('Cell A1');\n$table->addCell(150)->addText('Cell A2');\n$table->addCell(150)->addText('Cell A3');\n$table->addRow();\n$table->addCell(150)->addText('Cell B1');\n$table->addCell(150)->addText('Cell B2');\n$table->addCell(150)->addText('Cell B3');\n$templateProcessor->setComplexBlock('table', $table);\n
"},{"location":"usage/template.html#setchartvalue","title":"setChartValue","text":"Replace a variable by a chart.
<?php\n\n$categories = array('A', 'B', 'C', 'D', 'E');\n$series1 = array(1, 3, 2, 5, 4);\n$chart = new Chart('doughnut', $categories, $series1);\n$templateProcessor->setChartValue('myChart', $chart);\n
"},{"location":"usage/template.html#save","title":"save","text":"Saves the loaded template within the current directory. Returns the file path.
<?php\n\n$filepath = $templateProcessor->save();\n
"},{"location":"usage/template.html#saveas","title":"saveAs","text":"Saves a copy of the loaded template in the indicated path.
<?php\n\n$pathToSave = 'path/to/save/file.ext';\n$templateProcessor->saveAs($pathToSave);\n
"},{"location":"usage/writers.html","title":"Writers","text":""},{"location":"usage/writers.html#html","title":"HTML","text":"The name of the writer is HTML
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'HTML');\n$writer->save(__DIR__ . '/sample.html');\n
When generating html/pdf, you can alter the default handling of white space (normal), and/or supply a fallback generic font as follows:
$writer = IOFactory::createWriter($oPhpWord, 'HTML');\n$writer->setDefaultGenericFont('serif');\n$writer->setDefaultWhiteSpace('pre-wrap');\n$writer->save(__DIR__ . '/sample.html');\n
"},{"location":"usage/writers.html#odtext","title":"ODText","text":"The name of the writer is ODText
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'ODText');\n$writer->save(__DIR__ . '/sample.docx');\n
"},{"location":"usage/writers.html#pdf","title":"PDF","text":"The name of the writer is PDF
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'PDF');\n$writer->save(__DIR__ . '/sample.pdf');\n
To generate a PDF, the PhpWord object passes through HTML before generating the PDF. This HTML can be modified using a callback.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'PDF');\n$writer->setEditCallback('cbEditHTML');\n$writer->save(__DIR__ . '/sample.pdf');\n\n/**\n * Add a meta tag generator\n */\nfunction cbEditHTML(string $inputHTML): string\n{\n $beforeBody = '<meta name=\"generator\" content=\"PHPWord\" />';\n $needle = '</head>';\n\n $pos = strpos($inputHTML, $needle);\n if ($pos !== false) {\n $inputHTML = (string) substr_replace($inputHTML, \"$beforeBody\\n$needle\", $pos, strlen($needle));\n }\n\n return $inputHTML;\n}\n
"},{"location":"usage/writers.html#options","title":"Options","text":"You can define options like : * font
: default font
Options must be defined before creating the writer.
<?php\n\nuse PhpOffice\\PhpWord\\Settings;\n\nSettings::setPdfRendererOptions([\n 'font' => 'Arial'\n]);\n\n$writer = IOFactory::createWriter($oPhpWord, 'PDF');\n$writer->save(__DIR__ . '/sample.pdf');\n
"},{"location":"usage/writers.html#specify-the-pdf-renderer","title":"Specify the PDF Renderer","text":"Before PHPWord can write a PDF, you must specify the renderer to use and the path to it. Currently, three renderers are supported:
To specify the renderer you use two static Settings
functions:
setPdfRendererName
: This sets the name of the renderer library to use. Provide one of Settings
' three PDF_
constants to the function call. setPdfRendererPath
: This sets the path to the renderer library. This directory is the renderer's package directory within Composer's vendor directory. In the code below, you can see an example of setting MPDF as the desired PDF renderer.
Settings::setPdfRendererName(Settings::PDF_RENDERER_MPDF);\nSettings::setPdfRendererPath(__DIR__ . '/../vendor/mpdf/mpdf');\n
"},{"location":"usage/writers.html#rtf","title":"RTF","text":"The name of the writer is RTF
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'RTF');\n$writer->save(__DIR__ . '/sample.rtf');\n
"},{"location":"usage/writers.html#word2007","title":"Word2007","text":"The name of the writer is Word2007
.
<?php\n\n$writer = IOFactory::createWriter($oPhpWord, 'Word2007');\n$writer->save(__DIR__ . '/sample.docx');\n
"},{"location":"usage/writers.html#zip-adapter","title":"ZIP Adapter","text":"You can change the ZIP Adapter for the writer. By default, the ZIP Adapter is ZipArchiveAdapter
.
<?php\n\nuse PhpOffice\\Common\\Adapter\\Zip\\PclZipAdapter;\nuse PhpOffice\\Common\\Adapter\\Zip\\ZipArchiveAdapter;\n\n$writer = IOFactory::createWriter($oPhpWord, 'Word2007');\n$writer->setZipAdapter(new PclZipAdapter());\n$writer->save(__DIR__ . '/sample.docx');\n
"},{"location":"usage/elements/index.html","title":"Elements","text":"Below are the matrix of element availability in each container. The column shows the containers while the rows lists the elements.
Num Element Section Header Footer Cell Text Run Footnote 1 Text 2 Text Run 3 Link 4 Title 5 Preserve Text 6 Text Break 7 Page Break 8 List 9 Table 10 Image 11 Watermark 12 OLEObject 13 TOC 14 Footnote 15 Endnote 16 CheckBox 17 TextBox 18 Field 19 Line 20 Chart Legend:
: Available. : Available only when inside header/footer. : Available only when inside section. : Not available. : Should be available. "},{"location":"usage/elements/chart.html","title":"Chart","text":"Charts can be added using
<?php\n\n$categories = array('A', 'B', 'C', 'D', 'E');\n$series = array(1, 3, 2, 5, 4);\n$chart = $section->addChart('line', $categories, $series, $style);\n
For available styling options, see Styles > Chart
.
Check out the Sample_32_Chart.php for more options and styling.
"},{"location":"usage/elements/checkbox.html","title":"Checkbox","text":"Checkbox elements can be added to sections or table cells by using addCheckBox
.
<?php\n\n$section->addCheckBox($name, $text, [$fontStyle], [$paragraphStyle]);\n
$name
. Name of the check box. $text
. Text to be displayed in the document. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. "},{"location":"usage/elements/comment.html","title":"Comment","text":"Comments can be added to a document by using addComment
. The comment can contain formatted text. Once the comment has been added, it can be linked to any element with setCommentRangeStart
.
<?php\n\n// first create a comment\n$comment= new \\PhpOffice\\PhpWord\\Element\\Comment('Authors name', new \\DateTime(), 'my_initials');\n$comment->addText('Test', array('bold' => true));\n\n// add it to the document\n$phpWord->addComment($comment);\n\n$textrun = $section->addTextRun();\n$textrun->addText('This ');\n$text = $textrun->addText('is');\n// link the comment to the text you just created\n$text->setCommentRangeStart($comment);\n$textrun->addText(' a test');\n
If no end is set for a comment using the setCommentRangeEnd
, the comment will be ended automatically at the end of the element it is started on.
"},{"location":"usage/elements/field.html","title":"Field","text":"Currently the following fields are supported:
PAGE NUMPAGES DATE XE INDEX FILENAME REF <?php\n\n$section->addField($fieldType, [$properties], [$options], [$fieldText], [$fontStyle])\n
$fontStyle
. See Styles > Font
. See \\PhpOffice\\PhpWord\\Element\\Field
for list of properties and options available for each field type. Options which are not specifically defined can be added. Those must start with a \\
.
For instance for the INDEX field, you can do the following (See Index Field for list of available options <https://support.office.com/en-us/article/Field-codes-Index-field-adafcf4a-cb30-43f6-85c7-743da1635d9e?ui=en-US&rs=en-US&ad=US>
_ ):
<?php\n\n// the $fieldText can be either a simple string\n$fieldText = 'The index value';\n\n// or a 'TextRun', to be able to format the text you want in the index\n$fieldText = new TextRun();\n$fieldText->addText('My ');\n$fieldText->addText('bold index', ['bold' => true]);\n$fieldText->addText(' entry');\n$section->addField('XE', array(), array(), $fieldText);\n\n// this actually adds the index\n$section->addField('INDEX', array(), array('\\\\e \" \" \\\\h \"A\" \\\\c \"3\"'), 'right click to update index');\n\n// Adding reference to a bookmark\n$fieldText->addField('REF', [\n 'name' => 'bookmark'\n], [\n 'InsertParagraphNumberRelativeContext',\n 'CreateHyperLink',\n]);\n
"},{"location":"usage/elements/formula.html","title":"Formula","text":"Formula can be added using
<?php\n\nuse PhpOffice\\Math\\Element;\nuse PhpOffice\\Math\\Math;\n\n$fraction = new Element\\Fraction();\n$fraction\n ->setDenominator(new Element\\Numeric(2))\n ->setNumerator(new Element\\Identifier('\u03c0'))\n;\n\n$math = new Math();\n$math->add($fraction);\n\n$formula = $section->addFormula($math);\n
"},{"location":"usage/elements/image.html","title":"Image","text":"To add an image, use the addImage
method to sections, headers, footers, textruns, or table cells.
<?php\n\n$section->addImage($src, [$style]);\n
$src
. String path to a local image, URL of a remote image or the image data, as a string. Warning: Do not pass user-generated strings here, as that would allow an attacker to read arbitrary files or perform server-side request forgery by passing file paths or URLs instead of image data. $style
. See Styles > Image
. Examples:
<?php\n\n$section = $phpWord->addSection();\n$section->addImage(\n 'mars.jpg',\n array(\n 'width' => 100,\n 'height' => 100,\n 'marginTop' => -1,\n 'marginLeft' => -1,\n 'wrappingStyle' => 'behind'\n )\n);\n$footer = $section->addFooter();\n$footer->addImage('http://example.com/image.php');\n$textrun = $section->addTextRun();\n$textrun->addImage('http://php.net/logo.jpg');\n$source = file_get_contents('/path/to/my/images/earth.jpg');\n$textrun->addImage($source);\n
"},{"location":"usage/elements/line.html","title":"Line","text":"Line elements can be added to sections by using addLine
.
<?php\n\n$lineStyle = array('weight' => 1, 'width' => 100, 'height' => 0, 'color' => 635552);\n$section->addLine($lineStyle);\n
Available line style attributes:
weight
. Line width in twip. color
. Defines the color of stroke. dash
. Line types: dash, rounddot, squaredot, dashdot, longdash, longdashdot, longdashdotdot. beginArrow
. Start type of arrow: block, open, classic, diamond, oval. endArrow
. End type of arrow: block, open, classic, diamond, oval. width
. Line-object width in pt. height
. Line-object height in pt. flip
. Flip the line element: true, false. "},{"location":"usage/elements/link.html","title":"Link","text":"You can add Hyperlinks to the document by using the function addLink:
<?php\n\n$section->addLink($linkSrc, [$linkName], [$fontStyle], [$paragraphStyle]);\n
$linkSrc
. The URL of the link. $linkName
. Placeholder of the URL that appears in the document. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. "},{"location":"usage/elements/list.html","title":"List","text":"Lists can be added by using addListItem
and addListItemRun
methods. addListItem
is used for creating lists that only contain plain text. addListItemRun
is used for creating complex list items that contains texts with different style (some bold, other italics, etc) or other elements, e.g. images or links. The syntaxes are as follow:
Basic usage:
<?php\n\n$section->addListItem($text, [$depth], [$fontStyle], [$listStyle], [$paragraphStyle]);\n$listItemRun = $section->addListItemRun([$depth], [$listStyle], [$paragraphStyle])\n
Parameters:
$text
. Text that appears in the document. $depth
. Depth of list item. $fontStyle
. See Styles > Font
.. $listStyle
. List style of the current element TYPE_NUMBER, TYPE_ALPHANUM, TYPE_BULLET_FILLED, etc. See list of constants in PHPWord\\Style\\ListItem. $paragraphStyle
. See Styles > Paragraph
.. See Sample_14_ListItem.php
for more code sample.
Advanced usage:
You can also create your own numbering style by changing the $listStyle
parameter with the name of your numbering style.
<?php\n\n$phpWord->addNumberingStyle(\n 'multilevel',\n array(\n 'type' => 'multilevel',\n 'levels' => array(\n array('format' => 'decimal', 'text' => '%1.', 'left' => 360, 'hanging' => 360, 'tabPos' => 360),\n array('format' => 'upperLetter', 'text' => '%2.', 'left' => 720, 'hanging' => 360, 'tabPos' => 720),\n )\n )\n);\n$section->addListItem('List Item I', 0, null, 'multilevel');\n$section->addListItem('List Item I.a', 1, null, 'multilevel');\n$section->addListItem('List Item I.b', 1, null, 'multilevel');\n$section->addListItem('List Item II', 0, null, 'multilevel');\n
For available styling options see Styles > Numbering Level
.
"},{"location":"usage/elements/note.html","title":"Footnote & Endnote","text":"You can create footnotes with addFootnote
and endnotes withaddEndnote
in texts or textruns, but it's recommended to use textrun to have better layout. You can use addText
, addLink
,addTextBreak
, addImage
, addOLEObject
on footnotes and endnotes.
On textrun:
<?php\n\n$textrun = $section->addTextRun();\n$textrun->addText('Lead text.');\n$footnote = $textrun->addFootnote();\n$footnote->addText('Footnote text can have ');\n$footnote->addLink('http://test.com', 'links');\n$footnote->addText('.');\n$footnote->addTextBreak();\n$footnote->addText('And text break.');\n$textrun->addText('Trailing text.');\n$endnote = $textrun->addEndnote();\n$endnote->addText('Endnote put at the end');\n
On text:
<?php\n\n$section->addText('Lead text.');\n$footnote = $section->addFootnote();\n$footnote->addText('Footnote text.');\n
By default the footnote reference number will be displayed with decimal number starting from 1. This number uses the FooterReference
style which you can redefine with the addFontStyle
method. Default value for this style is array('superScript' => true)
;
The footnote numbering can be controlled by setting the FootnoteProperties on the Section.
<?php\n\n$fp = new \\PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties();\n//sets the position of the footnote (pageBottom (default), beneathText, sectEnd, docEnd)\n$fp->setPos(\\PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::POSITION_BENEATH_TEXT);\n//set the number format to use (decimal (default), upperRoman, upperLetter, ...)\n$fp->setNumFmt(\\PhpOffice\\PhpWord\\SimpleType\\NumberFormat::LOWER_ROMAN);\n//force starting at other than 1\n$fp->setNumStart(2);\n//when to restart counting (continuous (default), eachSect, eachPage)\n$fp->setNumRestart(\\PhpOffice\\PhpWord\\ComplexType\\FootnoteProperties::RESTART_NUMBER_EACH_PAGE);\n//And finaly, set it on the Section\n$section->setFootnoteProperties($fp);\n
"},{"location":"usage/elements/oleobject.html","title":"Object","text":"You can add OLE embeddings, such as Excel spreadsheets or PowerPoint presentations to the document by using addOLEObject
method.
<?php\n\n$section->addOLEObject($src, [$style]);\n
"},{"location":"usage/elements/pagebreak.html","title":"Page breaks","text":"There are two ways to insert a page break, using the addPageBreak
method or using the pageBreakBefore
style of paragraph.
<?php\n\n$section->addPageBreak();\n
"},{"location":"usage/elements/preservetext.html","title":"Preserve text","text":"The addPreserveText
method is used to add a page number or page count to headers or footers.
<?php\n\n$footer->addPreserveText('Page {PAGE} of {NUMPAGES}.');\n
"},{"location":"usage/elements/table.html","title":"Table","text":"To add tables, rows, and cells, use the addTable
, addRow
, and addCell
methods:
<?php\n\n$table = $section->addTable([$tableStyle]);\n$table->addRow([$height], [$rowStyle]);\n$cell = $table->addCell($width, [$cellStyle]);\n
Table style can be defined with addTableStyle
:
<?php\n\n$tableStyle = array(\n 'borderColor' => '006699',\n 'borderSize' => 6,\n 'cellMargin' => 50\n);\n$firstRowStyle = array('bgColor' => '66BBFF');\n$phpWord->addTableStyle('myTable', $tableStyle, $firstRowStyle);\n$table = $section->addTable('myTable');\n
For available styling options see Styles > Table
.
"},{"location":"usage/elements/table.html#cell-span","title":"Cell span","text":"You can span a cell on multiple columns by using gridSpan
or multiple rows by using vMerge
.
<?php\n\n$cell = $table->addCell(200);\n$cell->getStyle()->setGridSpan(5);\n
See Sample_09_Tables.php
for more code sample.
"},{"location":"usage/elements/text.html","title":"Text","text":"Text can be added by using addText
and addTextRun
methods. addText
is used for creating simple paragraphs that only contain texts with the same style. addTextRun
is used for creating complex paragraphs that contain text with different style (some bold, other italics, etc) or other elements, e.g. images or links. The syntaxes are as follow:
<?php\n\n$section->addText($text, [$fontStyle], [$paragraphStyle]);\n$textrun = $section->addTextRun([$paragraphStyle]);\n
$text
. Text to be displayed in the document. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. For available styling options, see Styles > Font
and Styles > Paragraph
.
If you want to enable track changes on added text you can mark it as INSERTED or DELETED by a specific user at a given time:
<?php\n\n$text = $section->addText('Hello World!');\n$text->setChanged(\\PhpOffice\\PhpWord\\Element\\ChangedElement::TYPE_INSERTED, 'Fred', (new \\DateTime()));\n
"},{"location":"usage/elements/textbox.html","title":"TextBox","text":"To Be Completed...
"},{"location":"usage/elements/textbreak.html","title":"Text breaks","text":"Text breaks are empty new lines. To add text breaks, use the following syntax. All parameters are optional.
<?php\n\n$section->addTextBreak([$breakCount], [$fontStyle], [$paragraphStyle]);\n
$breakCount
. How many lines. $fontStyle
. See Styles > Font
. $paragraphStyle
. See Styles > Paragraph
. "},{"location":"usage/elements/title.html","title":"Title","text":"If you want to structure your document or build table of contents, you need titles or headings. To add a title to the document, use the addTitleStyle
and addTitle
method. If depth
is 0, a Title will be inserted, otherwise a Heading1, Heading2, ...
<?php\n\n$phpWord->addTitleStyle($depth, [$fontStyle], [$paragraphStyle]);\n$section->addTitle($text, $depth, $pageNumber);\n
addTitleStyle
: - $depth
- $fontStyle
: See Styles > Font
. - $paragraphStyle
: See Styles > Paragraph
.
addTitle
: - $text
. Text to be displayed in the document. This can be string
or a \\PhpOffice\\PhpWord\\Element\\TextRun
- $depth
- $pageNumber
: Number of the page
It's necessary to add a title style to your document because otherwise the title won't be detected as a real title.
"},{"location":"usage/elements/toc.html","title":"Table of contents","text":"To add a table of contents (TOC), you can use the addTOC
method. Your TOC can only be generated if you have add at least one title (See \"Title\").
<?php\n\n$section->addTOC([$fontStyle], [$tocStyle], [$minDepth], [$maxDepth]);\n
$fontStyle
. See font style section. $tocStyle
. See available options below. $minDepth
. Minimum depth of header to be shown. Default 1. $maxDepth
. Maximum depth of header to be shown. Default 9. Options for $tocStyle
:
tabLeader
. Fill type between the title text and the page number. Use the defined constants in \\PhpOffice\\PhpWord\\Style\\TOC
. tabPos
. The position of the tab where the page number appears in twip. indent
. The indent factor of the titles in twip. "},{"location":"usage/elements/trackchanges.html","title":"Track Changes","text":"Track changes can be set on text elements. There are 2 ways to set the change information on an element. Either by calling the setChangeInfo()
, or by setting the TrackChange
instance on the element with setTrackChange()
.
<?php\n\n$phpWord = new \\PhpOffice\\PhpWord\\PhpWord();\n\n// New portrait section\n$section = $phpWord->addSection();\n$textRun = $section->addTextRun();\n\n$text = $textRun->addText('Hello World! Time to ');\n\n$text = $textRun->addText('wake ', array('bold' => true));\n$text->setChangeInfo(TrackChange::INSERTED, 'Fred', time() - 1800);\n\n$text = $textRun->addText('up');\n$text->setTrackChange(new TrackChange(TrackChange::INSERTED, 'Fred'));\n\n$text = $textRun->addText('go to sleep');\n$text->setChangeInfo(TrackChange::DELETED, 'Barney', new \\DateTime('@' . (time() - 3600)));\n
"},{"location":"usage/elements/watermark.html","title":"Watermark","text":"To add a watermark (or page background image), your section needs a header reference. After creating a header, you can use the addWatermark
method to add a watermark.
<?php\n\n$section = $phpWord->addSection();\n$header = $section->addHeader();\n$header->addWatermark('resources/_earth.jpg', array('marginTop' => 200, 'marginLeft' => 55));\n
"},{"location":"usage/styles/chart.html","title":"Chart","text":"Available Chart style options:
width
. Width (in EMU). height
. Height (in EMU). 3d
. Is 3D; applies to pie, bar, line, area, true or false. colors
. A list of colors to use in the chart. title
. The title for the chart. showLegend
. Show legend, true or false. LegendPosition
. Legend position, r (default), b, t, l or tr. categoryLabelPosition
. Label position for categories, nextTo (default), low or high. valueLabelPosition
. Label position for values, nextTo (default), low or high. categoryAxisTitle
. The title for the category axis. valueAxisTitle
. The title for the values axis. majorTickMarkPos
. The position for major tick marks, in, out, cross, none (default). showAxisLabels
. Show labels for axis, true or false. gridX
. Show Gridlines for X-Axis, true or false. gridY
. Show Gridlines for Y-Axis, true or false. "},{"location":"usage/styles/font.html","title":"Font","text":"Available Font style options:
allCaps
. All caps, true or false. bgColor
. Font background color, e.g. FF0000. bold
. Bold, true or false. color
. Font color, e.g. FF0000. doubleStrikethrough
. Double strikethrough, true or false. fgColor
. Font highlight color, e.g. yellow, green, blue. See \\PhpOffice\\PhpWord\\Style\\Font::FGCOLOR_...
class constants for possible values hint
. Font content type, default, eastAsia, or cs. italic
. Italic, true or false. name
. Font name, e.g. Arial. rtl
. Right to Left language, true or false. size
. Font size, e.g. 20, 22. smallCaps
. Small caps, true or false. strikethrough
. Strikethrough, true or false. subScript
. Subscript, true or false. superScript
. Superscript, true or false. underline
. Underline, single, dash, dotted, etc. See \\PhpOffice\\PhpWord\\Style\\Font::UNDERLINE_...
class constants for possible values lang
. Language, either a language code like en-US, fr-BE, etc. or an object (or as an array) if you need to set eastAsian or bidirectional languages See \\PhpOffice\\PhpWord\\Style\\Language
class for some language codes. position
. The text position, raised or lowered, in half points hidden
. Hidden text, true or false. whiteSpace
. How white space is handled when generating html/pdf. Possible values are pre-wrap and normal (other css values for white space are accepted, but are not expected to be useful). fallbackFont
. Fallback generic font for html/pdf. Possible values are sans-serif, serif, and monospace (other css values for generic fonts are accepted). "},{"location":"usage/styles/image.html","title":"Image","text":"Available Image style options:
alignment
. See \\PhpOffice\\PhpWord\\SimpleType\\Jc
class for the details. height
. Height in pt. marginLeft
. Left margin in inches, can be negative. marginTop
. Top margin in inches, can be negative. width
. Width in pt. wrappingStyle
. Wrapping style, inline, square, tight, behind, or infront. wrapDistanceTop
. Top text wrapping in pixels. wrapDistanceBottom
. Bottom text wrapping in pixels. wrapDistanceLeft
. Left text wrapping in pixels. wrapDistanceRight
. Right text wrapping in pixels. "},{"location":"usage/styles/numberinglevel.html","title":"Numbering level","text":"Available NumberingLevel style options:
alignment
. Supports all alignment modes since 1st Edition of ECMA-376 standard up till ISO/IEC 29500:2012. See \\PhpOffice\\PhpWord\\SimpleType\\Jc
class constants for possible values. font
. Font name. format
. Numbering format bullet|decimal|upperRoman|lowerRoman|upperLetter|lowerLetter. hanging
. See paragraph style. hint
. See font style. left
. See paragraph style. restart
. Restart numbering level symbol. start
. Starting value. suffix
. Content between numbering symbol and paragraph text tab|space|nothing. tabPos
. See paragraph style. text
. Numbering level text e.g. %1 for nonbullet or bullet character. "},{"location":"usage/styles/paragraph.html","title":"Paragraph","text":"Available Paragraph style options:
alignment
. Supports all alignment modes since 1st Edition of ECMA-376 standard up till ISO/IEC 29500:2012. See \\PhpOffice\\PhpWord\\SimpleType\\Jc
class constants for possible values. basedOn
. Parent style. hanging
. Hanging indentation in half inches. indent
. Indent (left indentation) in half inches. indentation
. An array of indentation key => value pairs in twip. Supports left, right, firstLine and hanging indentation. See \\PhpOffice\\PhpWord\\Style\\Indentation
for possible identation types. keepLines
. Keep all lines on one page, true or false. keepNext
. Keep paragraph with next paragraph, true or false. lineHeight
. Text line height, e.g. 1.0, 1.5, etc. next
. Style for next paragraph. pageBreakBefore
. Start paragraph on next page, true or false. spaceBefore
. Space before paragraph in twip. spaceAfter
. Space after paragraph in twip. spacing
. Space between lines in twip. If spacingLineRule is auto, 240 (height of 1 line) will be added, so if you want a double line height, set this to 240. spacingLineRule
. Line Spacing Rule. auto, exact, atLeast See \\PhpOffice\\PhpWord\\SimpleType\\LineSpacingRule
class constants for possible values. suppressAutoHyphens
. Hyphenation for paragraph, true or false. tabs
. Set of custom tab stops. widowControl
. Allow first/last line to display on a separate page, true or false. contextualSpacing
. Ignore Spacing Above and Below When Using Identical Styles, true or false. bidi
. Right to Left Paragraph Layout, true or false. shading
. Paragraph Shading. textAlignment
. Vertical Character Alignment on Line. See \\PhpOffice\\PhpWord\\SimpleType\\TextAlignment
class constants for possible values. "},{"location":"usage/styles/section.html","title":"Section","text":"Available Section style options:
borderBottomColor
. Border bottom color. borderBottomSize
. Border bottom size in twip. borderLeftColor
. Border left color. borderLeftSize
. Border left size in twip. borderRightColor
. Border right color. borderRightSize
. Border right size in twip. borderTopColor
. Border top color. borderTopSize
. Border top size in twip. breakType
. Section break type (nextPage, nextColumn, continuous, evenPage, oddPage). colsNum
. Number of columns. colsSpace
. Spacing between columns. footerHeight
. Spacing to bottom of footer. gutter
. Page gutter spacing. headerHeight
. Spacing to top of header. marginTop
. Page margin top in twip. marginLeft
. Page margin left in twip. marginRight
. Page margin right in twip. marginBottom
. Page margin bottom in twip. orientation
. Page orientation (portrait
, which is default, or landscape
). See \\PhpOffice\\PhpWord\\Style\\Section::ORIENTATION_...
class constants for possible values pageSizeH
. Page height in twip. Implicitly defined by orientation
option. Any changes are discouraged. pageSizeW
. Page width in twip. Implicitly defined by orientation
option. Any changes are discouraged. vAlign
. Vertical Page Alignment See \\PhpOffice\\PhpWord\\SimpleType\\VerticalJc
for possible values "},{"location":"usage/styles/table.html","title":"Table","text":"Available Table style options:
alignment
. Supports all alignment modes since 1st Edition of ECMA-376 standard up till ISO/IEC 29500:2012. See \\PhpOffice\\PhpWord\\SimpleType\\JcTable
and \\PhpOffice\\PhpWord\\SimpleType\\Jc
class constants for possible values. bgColor
. Background color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Color
. Border color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Size
. Border size in twip. cellMargin(Top|Right|Bottom|Left)
. Cell margin in twip. indent
. Table indent from leading margin. Must be an instance of \\PhpOffice\\PhpWord\\ComplexType\\TblWidth
. width
. Table width in Fiftieths of a Percent or Twentieths of a Point. unit
. The unit to use for the width. One of \\PhpOffice\\PhpWord\\SimpleType\\TblWidth
. Defaults to auto. layout
. Table layout, either fixed or autofit See \\PhpOffice\\PhpWord\\Style\\Table
for constants. cellSpacing
Cell spacing in twip position
Floating Table Positioning, see below for options bidiVisual
Present table as Right-To-Left Floating Table Positioning options:
leftFromText
Distance From Left of Table to Text in twip rightFromText
Distance From Right of Table to Text in twip topFromText
Distance From Top of Table to Text in twip bottomFromText
Distance From Top of Table to Text in twip vertAnchor
Table Vertical Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::VANCHOR_*
horzAnchor
Table Horizontal Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::HANCHOR_*
tblpXSpec
Relative Horizontal Alignment From Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::XALIGN_*
tblpX
Absolute Horizontal Distance From Anchorin twip tblpYSpec
Relative Vertical Alignment From Anchor, one of \\PhpOffice\\PhpWord\\Style\\TablePosition::YALIGN_*
tblpY
Absolute Vertical Distance From Anchorin twip Available Row style options:
cantSplit
. Table row cannot break across pages, true or false. exactHeight
. Row height is exact or at least. tblHeader
. Repeat table row on every new page, true or false. Available Cell style options:
bgColor
. Background color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Color
. Border color, e.g. '9966CC'. border(Top|Right|Bottom|Left)Size
. Border size in twip. border(Top|Right|Bottom|Left)Style
. Border style. You can use constants from \\PhpOffice\\PhpWord\\SimpleType\\Border
gridSpan
. Number of columns spanned. textDirection(btLr|tbRl)
. Direction of text. You can use constants \\PhpOffice\\PhpWord\\Style\\Cell::TEXT_DIR_BTLR
and \\PhpOffice\\PhpWord\\Style\\Cell::TEXT_DIR_TBRL
valign
. Vertical alignment, top, center, both, bottom. vMerge
. restart or continue. width
. Cell width in twip. "}]}
\ No newline at end of file