@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * |
59 | 59 | * @param string $filePath |
60 | 60 | * |
61 | - * @return Intervention\Image\Image |
|
61 | + * @return \Intervention\Image\Image |
|
62 | 62 | */ |
63 | 63 | public function renderFile($filePath) |
64 | 64 | { |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * |
73 | 73 | * @param string $string |
74 | 74 | * |
75 | - * @return Intervention\Image\Image |
|
75 | + * @return \Intervention\Image\Image |
|
76 | 76 | */ |
77 | 77 | public function renderString($string) |
78 | 78 | { |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | /** |
85 | 85 | * @param SimpleXMLElement $xml |
86 | 86 | * |
87 | - * @return Intervention\Image\Image |
|
87 | + * @return \Intervention\Image\Image |
|
88 | 88 | */ |
89 | 89 | protected function render(SimpleXMLElement $xml) |
90 | 90 | { |
@@ -10,7 +10,7 @@ |
||
10 | 10 | class BarcodeBuilder extends FixedTextBuilder |
11 | 11 | { |
12 | 12 | /** |
13 | - * @return BarcodeRenderer |
|
13 | + * @return BarcodeParser |
|
14 | 14 | */ |
15 | 15 | protected function instantiateParser() |
16 | 16 | { |
@@ -11,47 +11,55 @@ |
||
11 | 11 | /** |
12 | 12 | * Return a fully configured Renderer |
13 | 13 | * |
14 | - * @return RendererInterface |
|
14 | + * @return \Graze\CiffRenderer\Field\Renderer\RendererInterface |
|
15 | 15 | */ |
16 | 16 | public function build(); |
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @param ParserManager $parserManager |
20 | + * @return void |
|
20 | 21 | */ |
21 | 22 | public function setParserManager(ParserManager $parserManager); |
22 | 23 | |
23 | 24 | /** |
24 | 25 | * @param SimpleXMLElement $xmlField |
26 | + * @return void |
|
25 | 27 | */ |
26 | 28 | public function setXmlField(SimpleXMLElement $xmlField); |
27 | 29 | |
28 | 30 | /** |
29 | 31 | * @param ImageManager $imageManager |
32 | + * @return void |
|
30 | 33 | */ |
31 | 34 | public function setImageManager(ImageManager $imageManager); |
32 | 35 | |
33 | 36 | /** |
34 | 37 | * @param float $scale |
38 | + * @return void |
|
35 | 39 | */ |
36 | 40 | public function setScale($scale); |
37 | 41 | |
38 | 42 | /** |
39 | 43 | * @param string $tracerColour |
44 | + * @return void |
|
40 | 45 | */ |
41 | 46 | public function setTracerColour($tracerColour); |
42 | 47 | |
43 | 48 | /** |
44 | 49 | * @param SimpleXMLElement $xmlHeader |
50 | + * @return void |
|
45 | 51 | */ |
46 | 52 | public function setXmlHeader(SimpleXMLElement $xmlHeader); |
47 | 53 | |
48 | 54 | /** |
49 | 55 | * @param callable $fontResolver |
56 | + * @return void |
|
50 | 57 | */ |
51 | 58 | public function setFontResolver(callable $fontResolver); |
52 | 59 | |
53 | 60 | /** |
54 | 61 | * @param callable $graphicResolver |
62 | + * @return void |
|
55 | 63 | */ |
56 | 64 | public function setGraphicResolver(callable $graphicResolver); |
57 | 65 | } |
@@ -9,6 +9,7 @@ discard block |
||
9 | 9 | { |
10 | 10 | /** |
11 | 11 | * @param ParserManager $parserManager |
12 | + * @return void |
|
12 | 13 | */ |
13 | 14 | public function setParserManager(ParserManager $parserManager); |
14 | 15 | |
@@ -19,6 +20,7 @@ discard block |
||
19 | 20 | |
20 | 21 | /** |
21 | 22 | * @param SimpleXMLElement $xmlField |
23 | + * @return void |
|
22 | 24 | */ |
23 | 25 | public function setXmlField(SimpleXMLElement $xmlField); |
24 | 26 |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | } |
86 | 86 | |
87 | 87 | /** |
88 | - * @return int |
|
88 | + * @return double |
|
89 | 89 | */ |
90 | 90 | public function getPositionX() |
91 | 91 | { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
96 | - * @return int |
|
96 | + * @return double |
|
97 | 97 | */ |
98 | 98 | public function getPositionY() |
99 | 99 | { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
104 | - * @return int |
|
104 | + * @return double |
|
105 | 105 | */ |
106 | 106 | protected function getWidth() |
107 | 107 | { |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
112 | - * @return int |
|
112 | + * @return double |
|
113 | 113 | */ |
114 | 114 | protected function getHeight() |
115 | 115 | { |