Skip to content

Commit 2381396

Browse files
authored
Merge pull request #6 from magento-trigger/AC-2892-fix-return-type
AC-2892 fix return type
2 parents f241f5b + d1f6516 commit 2381396

File tree

5 files changed

+44
-16
lines changed

5 files changed

+44
-16
lines changed

library/Zend/Pdf/Action.php

+8
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,7 @@ public function dumpAction(Zend_Pdf_ElementFactory_Interface $factory, SplObject
326326
*
327327
* @return Zend_Pdf_Action
328328
*/
329+
#[\ReturnTypeWillChange]
329330
public function current()
330331
{
331332
return current($this->next);
@@ -336,6 +337,7 @@ public function current()
336337
*
337338
* @return integer
338339
*/
340+
#[\ReturnTypeWillChange]
339341
public function key()
340342
{
341343
return key($this->next);
@@ -344,6 +346,7 @@ public function key()
344346
/**
345347
* Go to next child
346348
*/
349+
#[\ReturnTypeWillChange]
347350
public function next()
348351
{
349352
return next($this->next);
@@ -352,6 +355,7 @@ public function next()
352355
/**
353356
* Rewind children
354357
*/
358+
#[\ReturnTypeWillChange]
355359
public function rewind()
356360
{
357361
return reset($this->next);
@@ -362,6 +366,7 @@ public function rewind()
362366
*
363367
* @return boolean
364368
*/
369+
#[\ReturnTypeWillChange]
365370
public function valid()
366371
{
367372
return current($this->next) !== false;
@@ -372,6 +377,7 @@ public function valid()
372377
*
373378
* @return Zend_Pdf_Action|null
374379
*/
380+
#[\ReturnTypeWillChange]
375381
public function getChildren()
376382
{
377383
return current($this->next);
@@ -382,6 +388,7 @@ public function getChildren()
382388
*
383389
* @return bool whether container has any pages
384390
*/
391+
#[\ReturnTypeWillChange]
385392
public function hasChildren()
386393
{
387394
return count($this->next) > 0;
@@ -397,6 +404,7 @@ public function hasChildren()
397404
*
398405
* @return int
399406
*/
407+
#[\ReturnTypeWillChange]
400408
public function count()
401409
{
402410
return count($this->childOutlines);

library/Zend/Pdf/Element/Reference.php

+8-4
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,18 @@ class Zend_Pdf_Element_Reference extends Zend_Pdf_Element
8282
/**
8383
* Object constructor:
8484
*
85-
* @param integer $objNum
86-
* @param integer $genNum
85+
* @param int $objNum
86+
* @param int $genNum
8787
* @param Zend_Pdf_Element_Reference_Context $context
8888
* @param Zend_Pdf_ElementFactory $factory
8989
* @throws Zend_Pdf_Exception
9090
*/
91-
public function __construct($objNum, $genNum = 0, Zend_Pdf_Element_Reference_Context $context, Zend_Pdf_ElementFactory $factory)
92-
{
91+
public function __construct(
92+
$objNum,
93+
$genNum,
94+
Zend_Pdf_Element_Reference_Context $context,
95+
Zend_Pdf_ElementFactory $factory
96+
){
9397
if ( !(is_integer($objNum) && $objNum > 0) ) {
9498
#require_once 'Zend/Pdf/Exception.php';
9599
throw new Zend_Pdf_Exception('Object number must be positive integer');

library/Zend/Pdf/NameTree.php

+14-11
Original file line numberDiff line numberDiff line change
@@ -85,68 +85,71 @@ public function __construct(Zend_Pdf_Element $rootDictionary)
8585
}
8686
}
8787

88+
#[\ReturnTypeWillChange]
8889
public function current()
8990
{
9091
return current($this->_items);
9192
}
9293

93-
94+
#[\ReturnTypeWillChange]
9495
public function next()
9596
{
9697
return next($this->_items);
9798
}
9899

99-
100+
#[\ReturnTypeWillChange]
100101
public function key()
101102
{
102103
return key($this->_items);
103104
}
104105

105-
106-
public function valid() {
106+
#[\ReturnTypeWillChange]
107+
public function valid()
108+
{
107109
return current($this->_items)!==false;
108110
}
109111

110-
112+
#[\ReturnTypeWillChange]
111113
public function rewind()
112114
{
113115
reset($this->_items);
114116
}
115117

116-
118+
#[\ReturnTypeWillChange]
117119
public function offsetExists($offset)
118120
{
119121
return array_key_exists($offset, $this->_items);
120122
}
121123

122-
124+
#[\ReturnTypeWillChange]
123125
public function offsetGet($offset)
124126
{
125127
return $this->_items[$offset];
126128
}
127129

128-
130+
#[\ReturnTypeWillChange]
129131
public function offsetSet($offset, $value)
130132
{
131133
if ($offset === null) {
132-
$this->_items[] = $value;
134+
$this->_items[] = $value;
133135
} else {
134136
$this->_items[$offset] = $value;
135137
}
136138
}
137139

138-
140+
#[\ReturnTypeWillChange]
139141
public function offsetUnset($offset)
140142
{
141143
unset($this->_items[$offset]);
142144
}
143145

144-
146+
#[\ReturnTypeWillChange]
145147
public function clear()
146148
{
147149
$this->_items = array();
148150
}
149151

152+
#[\ReturnTypeWillChange]
150153
public function count()
151154
{
152155
return count($this->_items);

library/Zend/Pdf/Outline.php

+8
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ abstract public function dumpOutline(Zend_Pdf_ElementFactory_Interface $factory,
295295
*
296296
* @return Zend_Pdf_Outline
297297
*/
298+
#[\ReturnTypeWillChange]
298299
public function current()
299300
{
300301
return current($this->childOutlines);
@@ -305,6 +306,7 @@ public function current()
305306
*
306307
* @return integer
307308
*/
309+
#[\ReturnTypeWillChange]
308310
public function key()
309311
{
310312
return key($this->childOutlines);
@@ -313,6 +315,7 @@ public function key()
313315
/**
314316
* Go to next child
315317
*/
318+
#[\ReturnTypeWillChange]
316319
public function next()
317320
{
318321
return next($this->childOutlines);
@@ -321,6 +324,7 @@ public function next()
321324
/**
322325
* Rewind children
323326
*/
327+
#[\ReturnTypeWillChange]
324328
public function rewind()
325329
{
326330
return reset($this->childOutlines);
@@ -331,6 +335,7 @@ public function rewind()
331335
*
332336
* @return boolean
333337
*/
338+
#[\ReturnTypeWillChange]
334339
public function valid()
335340
{
336341
return current($this->childOutlines) !== false;
@@ -341,6 +346,7 @@ public function valid()
341346
*
342347
* @return Zend_Pdf_Outline|null
343348
*/
349+
#[\ReturnTypeWillChange]
344350
public function getChildren()
345351
{
346352
return current($this->childOutlines);
@@ -351,6 +357,7 @@ public function getChildren()
351357
*
352358
* @return bool whether container has any pages
353359
*/
360+
#[\ReturnTypeWillChange]
354361
public function hasChildren()
355362
{
356363
return count($this->childOutlines) > 0;
@@ -366,6 +373,7 @@ public function hasChildren()
366373
*
367374
* @return int
368375
*/
376+
#[\ReturnTypeWillChange]
369377
public function count()
370378
{
371379
return count($this->childOutlines);

library/Zend/Pdf/StringParser.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,12 @@ private function _readReference($nextLexeme = null)
514514
return null;
515515
}
516516

517-
$ref = new Zend_Pdf_Element_Reference((int)$objNum, (int)$genNum, $this->_context, $this->_objFactory->resolve());
517+
$ref = new Zend_Pdf_Element_Reference(
518+
(int)$objNum,
519+
(int)$genNum,
520+
$this->_context,
521+
$this->_objFactory->resolve()
522+
);
518523

519524
return $ref;
520525
}

0 commit comments

Comments
 (0)