Completed
Push — master ( 0c99ca...63ab58 )
by Roberto
05:23 queued 03:13
created
src/Printers/Bematech.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -449,7 +449,7 @@
 block discarded – undo
449 449
      * @param integer $pheight
450 450
      * @param integer $pwidth
451 451
      * @param integer $colunms
452
-     * @return boolean
452
+     * @return boolean|null
453 453
      */
454 454
     public function barcodePDF417($data, $ecc = 5, $pheight = 2, $pwidth = 2, $colunms = 3)
455 455
     {
Please login to merge, or discard this patch.
src/Printers/Daruma.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -434,7 +434,7 @@
 block discarded – undo
434 434
      * @param integer $pheight
435 435
      * @param integer $pwidth
436 436
      * @param integer $colunms
437
-     * @return boolean
437
+     * @return false|null
438 438
      */
439 439
     public function barcodePDF417($data, $ecc = 5, $pheight = 2, $pwidth = 2, $colunms = 3)
440 440
     {
Please login to merge, or discard this patch.
src/Printers/DefaultPrinter.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
     /**
522 522
      * Set italic mode on or off
523 523
      *
524
-     * @return bool
524
+     * @return boolean|null
525 525
      */
526 526
     public function setItalic()
527 527
     {
@@ -658,7 +658,6 @@  discard block
 block discarded – undo
658 658
      * n  1/180-inch vertical motion
659 659
      * normal paragraph 30/180" => 4.23 mm
660 660
      *
661
-     * @param int $paragraph
662 661
      */
663 662
     public function setParagraph($value = 0)
664 663
     {
@@ -833,7 +832,7 @@  discard block
 block discarded – undo
833 832
      * @param integer $pheight
834 833
      * @param integer $pwidth
835 834
      * @param integer $colunms
836
-     * @return boolean
835
+     * @return boolean|null
837 836
      */
838 837
     public function barcodePDF417($data, $ecc = 5, $pheight = 2, $pwidth = 2, $colunms = 3)
839 838
     {
@@ -1038,7 +1037,7 @@  discard block
 block discarded – undo
1038 1037
      * Generate two characters for a number:
1039 1038
      * In lower and higher parts, or more parts as needed.
1040 1039
      *
1041
-     * @param int $int    Input number
1040
+     * @param int $input    Input number
1042 1041
      * @param int $length The number of bytes to output (1 - 4).
1043 1042
      */
1044 1043
     protected static function intLowHigh($input, $length)
Please login to merge, or discard this patch.