8
8
* @package Zend_Pdf
9
9
*/
10
10
11
- namespace Zend \ Pdf \Action ;
11
+ namespace ZendPdf \Action ;
12
12
13
13
use Countable ;
14
14
use RecursiveIterator ;
15
- use Zend \ Pdf ;
16
- use Zend \ Pdf \Exception ;
17
- use Zend \ Pdf \InternalType ;
18
- use Zend \ Pdf \ObjectFactory ;
15
+ use ZendPdf as Pdf ;
16
+ use ZendPdf \Exception ;
17
+ use ZendPdf \InternalType ;
18
+ use ZendPdf \ObjectFactory ;
19
19
20
20
/**
21
21
* Abstract PDF action representation class
@@ -30,34 +30,34 @@ abstract class AbstractAction extends Pdf\InternalStructure\NavigationTarget imp
30
30
/**
31
31
* Action dictionary
32
32
*
33
- * @var \Zend\Pdf \InternalType\DictionaryObject
34
- * | \Zend\Pdf \InternalType\IndirectObject
35
- * | \Zend\Pdf \InternalType\IndirectObjectReference
33
+ * @var \ZendPdf \InternalType\DictionaryObject
34
+ * | \ZendPdf \InternalType\IndirectObject
35
+ * | \ZendPdf \InternalType\IndirectObjectReference
36
36
*/
37
37
protected $ _actionDictionary ;
38
38
39
39
40
40
/**
41
41
* An original list of chained actions
42
42
*
43
- * @var array Array of \Zend\Pdf \Action\AbstractAction objects
43
+ * @var array Array of \ZendPdf \Action\AbstractAction objects
44
44
*/
45
45
protected $ _originalNextList ;
46
46
47
47
/**
48
48
* A list of next actions in actions tree (used for actions chaining)
49
49
*
50
- * @var array Array of \Zend\Pdf \Action\AbstractAction objects
50
+ * @var array Array of \ZendPdf \Action\AbstractAction objects
51
51
*/
52
52
public $ next = array ();
53
53
54
54
/**
55
55
* Object constructor
56
56
*
57
- * @param \Zend\Pdf \InternalType\DictionaryObject $dictionary
57
+ * @param \ZendPdf \InternalType\DictionaryObject $dictionary
58
58
* @param SplObjectStorage $processedActions list of already processed action dictionaries,
59
59
* used to avoid cyclic references
60
- * @throws \Zend\Pdf \Exception\ExceptionInterface
60
+ * @throws \ZendPdf \Exception\ExceptionInterface
61
61
*/
62
62
public function __construct (InternalType \AbstractTypeObject $ dictionary , \SplObjectStorage $ processedActions )
63
63
{
@@ -94,10 +94,10 @@ public function __construct(InternalType\AbstractTypeObject $dictionary, \SplObj
94
94
* Load PDF action object using specified dictionary
95
95
*
96
96
* @internal
97
- * @param \Zend\Pdf \InternalType\AbstractTypeObject $dictionary (It's actually Dictionary or Dictionary Object or Reference to a Dictionary Object)
97
+ * @param \ZendPdf \InternalType\AbstractTypeObject $dictionary (It's actually Dictionary or Dictionary Object or Reference to a Dictionary Object)
98
98
* @param SplObjectStorage $processedActions list of already processed action dictionaries, used to avoid cyclic references
99
- * @return \Zend\Pdf \Action\AbstractAction
100
- * @throws \Zend\Pdf \Exception\ExceptionInterface
99
+ * @return \ZendPdf \Action\AbstractAction
100
+ * @throws \ZendPdf \Exception\ExceptionInterface
101
101
*/
102
102
public static function load (InternalType \AbstractTypeObject $ dictionary , \SplObjectStorage $ processedActions = null )
103
103
{
@@ -180,7 +180,7 @@ public static function load(InternalType\AbstractTypeObject $dictionary, \SplObj
180
180
* Get resource
181
181
*
182
182
* @internal
183
- * @return \Zend\Pdf \InternalType\AbstractTypeObject
183
+ * @return \ZendPdf \InternalType\AbstractTypeObject
184
184
*/
185
185
public function getResource ()
186
186
{
@@ -193,10 +193,10 @@ public function getResource()
193
193
* Returns dictionary indirect object or reference
194
194
*
195
195
* @internal
196
- * @param \Zend\Pdf \ObjectFactory $factory Object factory for newly created indirect objects
196
+ * @param \ZendPdf \ObjectFactory $factory Object factory for newly created indirect objects
197
197
* @param SplObjectStorage $processedActions list of already processed actions
198
198
* (used to prevent infinity loop caused by cyclic references)
199
- * @return \Zend\Pdf\ InternalType\IndirectObject|\Zend\Pdf \InternalType\IndirectObjectReference
199
+ * @return \ZendPdf\ InternalType\IndirectObject|\ZendPdf \InternalType\IndirectObjectReference
200
200
*/
201
201
public function dumpAction (ObjectFactory $ factory , \SplObjectStorage $ processedActions = null )
202
202
{
@@ -268,7 +268,7 @@ public function dumpAction(ObjectFactory $factory, \SplObjectStorage $processedA
268
268
/**
269
269
* Returns current child action.
270
270
*
271
- * @return \Zend\Pdf \Action\AbstractAction
271
+ * @return \ZendPdf \Action\AbstractAction
272
272
*/
273
273
public function current ()
274
274
{
@@ -314,7 +314,7 @@ public function valid()
314
314
/**
315
315
* Returns the child action.
316
316
*
317
- * @return \Zend\Pdf \Action\AbstractAction|null
317
+ * @return \ZendPdf \Action\AbstractAction|null
318
318
*/
319
319
public function getChildren ()
320
320
{
0 commit comments