@@ -24,7 +24,7 @@ |
||
24 | 24 | parent::__construct($message, 0, $previous); |
25 | 25 | } |
26 | 26 | /** |
27 | - * @return mixed |
|
27 | + * @return string |
|
28 | 28 | */ |
29 | 29 | public function getFormat() |
30 | 30 | { |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | * @param FieldParserInterface $parser |
17 | 17 | * @param callable $fontResolver |
18 | 18 | * @param callable $graphicResolver |
19 | - * @return Intervention\Image\Image |
|
19 | + * @return \Intervention\Image\Image |
|
20 | 20 | */ |
21 | 21 | public function render( |
22 | 22 | ImageManager $imageManager, |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
44 | - * @return FieldParserInterface |
|
44 | + * @return FieldRendererBarcode |
|
45 | 45 | */ |
46 | 46 | public static function factory() |
47 | 47 | { |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param FieldParserInterface $parser |
32 | 32 | * @param callable $fontResolver |
33 | 33 | * @param callable $graphicResolver |
34 | - * @return Intervention\Image\Image |
|
34 | + * @return \Intervention\Image\Image |
|
35 | 35 | */ |
36 | 36 | public function render( |
37 | 37 | ImageManager $imageManager, |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
68 | - * @return FieldParserInterface |
|
68 | + * @return FieldRendererFixedText |
|
69 | 69 | */ |
70 | 70 | public static function factory() |
71 | 71 | { |
@@ -12,7 +12,7 @@ |
||
12 | 12 | * @param FieldParserInterface $parser |
13 | 13 | * @param callable $fontResolver |
14 | 14 | * @param callable $graphicResolver |
15 | - * @return Intervention\Image\Image |
|
15 | + * @return \Intervention\Image\Image |
|
16 | 16 | */ |
17 | 17 | public function render( |
18 | 18 | ImageManager $imageManager, |
@@ -42,7 +42,7 @@ |
||
42 | 42 | * @param \SimpleXMLElement $xml |
43 | 43 | * @param callable $fontResolver |
44 | 44 | * @param callable $graphicResolver |
45 | - * @return Intervention\Image\Image |
|
45 | + * @return \Intervention\Image\Image |
|
46 | 46 | */ |
47 | 47 | public function render( |
48 | 48 | \SimpleXMLElement $xml, |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * Render an image from a ciff file located on the filesystem. |
34 | 34 | * |
35 | 35 | * @param string $filePath |
36 | - * @return Intervention\Image\Image |
|
36 | + * @return \Intervention\Image\Image |
|
37 | 37 | */ |
38 | 38 | public function renderFile($filePath) |
39 | 39 | { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * Render an image from ciff data contained within a string. |
46 | 46 | * |
47 | 47 | * @param string $string |
48 | - * @return Intervention\Image\Image |
|
48 | + * @return \Intervention\Image\Image |
|
49 | 49 | */ |
50 | 50 | public function renderString($string) |
51 | 51 | { |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | /** |
57 | 57 | * @param \SimpleXMLElement $xml |
58 | - * @return Intervention\Image\Image |
|
58 | + * @return \Intervention\Image\Image |
|
59 | 59 | */ |
60 | 60 | private function render(\SimpleXMLElement $xml) |
61 | 61 | { |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
71 | - * @return int |
|
71 | + * @return double |
|
72 | 72 | */ |
73 | 73 | public function getPositionX() |
74 | 74 | { |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * @return int |
|
79 | + * @return double |
|
80 | 80 | */ |
81 | 81 | public function getPositionY() |
82 | 82 | { |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
87 | - * @return int |
|
87 | + * @return double |
|
88 | 88 | */ |
89 | 89 | public function getWidth() |
90 | 90 | { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
95 | - * @return int |
|
95 | + * @return double |
|
96 | 96 | */ |
97 | 97 | public function getHeight() |
98 | 98 | { |
@@ -8,21 +8,25 @@ |
||
8 | 8 | { |
9 | 9 | /** |
10 | 10 | * @param \SimpleXMLElement $xmlField |
11 | + * @return void |
|
11 | 12 | */ |
12 | 13 | public function setXmlField(\SimpleXMLElement $xmlField); |
13 | 14 | |
14 | 15 | /** |
15 | 16 | * @param \SimpleXMLElement $xmlHeader |
17 | + * @return void |
|
16 | 18 | */ |
17 | 19 | public function setXmlHeader(\SimpleXMLElement $xmlHeader); |
18 | 20 | |
19 | 21 | /** |
20 | 22 | * @param float $scale |
23 | + * @return void |
|
21 | 24 | */ |
22 | 25 | public function setScale($scale); |
23 | 26 | |
24 | 27 | /** |
25 | 28 | * @param FieldParserRegistry $fieldParserRegistry |
29 | + * @return void |
|
26 | 30 | */ |
27 | 31 | public function setFieldParserRegistry(FieldParserRegistry $fieldParserRegistry); |
28 | 32 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | * @param FieldParserInterface $parser |
13 | 13 | * @param callable $fontResolver |
14 | 14 | * @param callable $graphicResolver |
15 | - * @return Intervention\Image\Image |
|
15 | + * @return \Intervention\Image\Image |
|
16 | 16 | */ |
17 | 17 | public function render( |
18 | 18 | ImageManager $imageManager, |