Completed
Push — master ( 70d3a9...958457 )
by John
03:31
created
src/Field/Parser/ParserInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -9,6 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
19 20
 
20 21
     /**
21 22
      * @param SimpleXMLElement $xmlField
23
+     * @return void
22 24
      */
23 25
     public function setXmlField(SimpleXMLElement $xmlField);
24 26
 
Please login to merge, or discard this patch.
src/Field/Renderer/AbstractRenderer.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
109 109
     }
110 110
 
111 111
     /**
112
-     * @return int
112
+     * @return double
113 113
      */
114 114
     protected function getHeight()
115 115
     {
Please login to merge, or discard this patch.