@@ -295,6 +295,7 @@ abstract public function dumpOutline(Zend_Pdf_ElementFactory_Interface $factory,
295
295
*
296
296
* @return Zend_Pdf_Outline
297
297
*/
298
+ #[\ReturnTypeWillChange]
298
299
public function current ()
299
300
{
300
301
return current ($ this ->childOutlines );
@@ -305,6 +306,7 @@ public function current()
305
306
*
306
307
* @return integer
307
308
*/
309
+ #[\ReturnTypeWillChange]
308
310
public function key ()
309
311
{
310
312
return key ($ this ->childOutlines );
@@ -313,6 +315,7 @@ public function key()
313
315
/**
314
316
* Go to next child
315
317
*/
318
+ #[\ReturnTypeWillChange]
316
319
public function next ()
317
320
{
318
321
return next ($ this ->childOutlines );
@@ -321,6 +324,7 @@ public function next()
321
324
/**
322
325
* Rewind children
323
326
*/
327
+ #[\ReturnTypeWillChange]
324
328
public function rewind ()
325
329
{
326
330
return reset ($ this ->childOutlines );
@@ -331,6 +335,7 @@ public function rewind()
331
335
*
332
336
* @return boolean
333
337
*/
338
+ #[\ReturnTypeWillChange]
334
339
public function valid ()
335
340
{
336
341
return current ($ this ->childOutlines ) !== false ;
@@ -341,6 +346,7 @@ public function valid()
341
346
*
342
347
* @return Zend_Pdf_Outline|null
343
348
*/
349
+ #[\ReturnTypeWillChange]
344
350
public function getChildren ()
345
351
{
346
352
return current ($ this ->childOutlines );
@@ -351,6 +357,7 @@ public function getChildren()
351
357
*
352
358
* @return bool whether container has any pages
353
359
*/
360
+ #[\ReturnTypeWillChange]
354
361
public function hasChildren ()
355
362
{
356
363
return count ($ this ->childOutlines ) > 0 ;
@@ -366,6 +373,7 @@ public function hasChildren()
366
373
*
367
374
* @return int
368
375
*/
376
+ #[\ReturnTypeWillChange]
369
377
public function count ()
370
378
{
371
379
return count ($ this ->childOutlines );
0 commit comments