Completed
Branch master (899f93)
by John
03:42
created
src/Exception/UnsupportedDateFormatException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Field/Builder/GraphicPrimitiveBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @param GraphicPrimitiveParser
23 23
      *
24
-     * @return AbstractGraphicPrimitiveRenderer
24
+     * @return \Graze\CiffRenderer\Field\Renderer\GraphicPrimitive\AbstractGraphicPrimitiveRenderer
25 25
      */
26 26
     protected function instantiateRenderer(ParserInterface $parser)
27 27
     {
Please login to merge, or discard this patch.
src/Field/Parser/DateParser/DateFormatter/DateFormatterFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 class DateFormatterFactory
10 10
 {
11 11
     /**
12
-     * @param string $customFormat
13 12
      *
13
+     * @param string $dateFormat
14 14
      * @return DateFormatterInterface
15 15
      */
16 16
     public static function getFormatter($dateFormat)
Please login to merge, or discard this patch.
src/Field/Parser/DateParser/OffsetDateParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     }
26 26
 
27 27
     /**
28
-     * @return DateTimeInterface
28
+     * @return DateTimeImmutable
29 29
      */
30 30
     protected function getDateTime()
31 31
     {
Please login to merge, or discard this patch.
src/Field/Renderer/BarcodeRenderer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     }
19 19
 
20 20
     /**
21
-     * @return int
21
+     * @return double
22 22
      */
23 23
     protected function getFontSize()
24 24
     {
Please login to merge, or discard this patch.
src/Field/Renderer/FixedTextRenderer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     }
42 42
 
43 43
     /**
44
-     * @return int
44
+     * @return double
45 45
      */
46 46
     protected function getFontSize()
47 47
     {
Please login to merge, or discard this patch.
src/Field/Renderer/GraphicPrimitive/AbstractGraphicPrimitiveRenderer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 abstract class AbstractGraphicPrimitiveRenderer extends AbstractRenderer
8 8
 {
9 9
     /**
10
-     * @return int
10
+     * @return double
11 11
      */
12 12
     protected function getLineWeight()
13 13
     {
Please login to merge, or discard this patch.
src/Field/Renderer/RendererInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -9,21 +9,25 @@
 block discarded – undo
9 9
 {
10 10
     /**
11 11
      * @param ParserInterface $parser
12
+     * @return void
12 13
      */
13 14
     public function setParser(ParserInterface $parser);
14 15
 
15 16
     /**
16 17
      * @param ImageManager $imageManager
18
+     * @return void
17 19
      */
18 20
     public function setImageManager(ImageManager $imageManager);
19 21
 
20 22
     /**
21 23
      * @param float $scale
24
+     * @return void
22 25
      */
23 26
     public function setScale($scale);
24 27
 
25 28
     /**
26 29
      * @param string $colour
30
+     * @return void
27 31
      */
28 32
     public function setTracerColour($colour);
29 33
 
Please login to merge, or discard this patch.
src/Parser.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
     protected $xml;
14 14
 
15 15
     /**
16
-     * @param string $filePath
17 16
      */
18 17
     public function __construct(SimpleXMLElement $xml)
19 18
     {
Please login to merge, or discard this patch.