diff --git a/src/BarcodeGeneratorDynamicHTML.php b/src/BarcodeGeneratorDynamicHTML.php index 52809d3..57ce23e 100644 --- a/src/BarcodeGeneratorDynamicHTML.php +++ b/src/BarcodeGeneratorDynamicHTML.php @@ -11,7 +11,7 @@ class BarcodeGeneratorDynamicHTML extends BarcodeGenerator * This 'dynamic' version uses percentage based widths and heights, resulting in a vector-y qualitative result. * * @param string $barcode code to print - * @param BarcodeGenerator::Type_* $type (string) type of barcode + * @param BarcodeGenerator::TYPE_* $type (string) type of barcode * @param string $foregroundColor Foreground color for bar elements as '#333' or 'orange' for example (background is transparent). * @return string HTML code. */ diff --git a/src/BarcodeGeneratorHTML.php b/src/BarcodeGeneratorHTML.php index 294b680..75a98fe 100644 --- a/src/BarcodeGeneratorHTML.php +++ b/src/BarcodeGeneratorHTML.php @@ -9,7 +9,7 @@ class BarcodeGeneratorHTML extends BarcodeGenerator * This original version uses pixel based widths and heights. Use Dynamic HTML version for better quality representation. * * @param string $barcode code to print - * @param BarcodeGenerator::Type_* $type (string) type of barcode + * @param BarcodeGenerator::TYPE_* $type (string) type of barcode * @param int $widthFactor Width of a single bar element in pixels. * @param int $height Height of a single bar element in pixels. * @param string $foregroundColor Foreground color for bar elements as '#333' or 'orange' for example (background is transparent). diff --git a/src/BarcodeGeneratorPNG.php b/src/BarcodeGeneratorPNG.php index bc7943c..05ac413 100644 --- a/src/BarcodeGeneratorPNG.php +++ b/src/BarcodeGeneratorPNG.php @@ -46,7 +46,7 @@ public function useGd() * Return a PNG image representation of barcode (requires GD or Imagick library). * * @param string $barcode code to print - * @param BarcodeGenerator::Type_* $type (string) type of barcode + * @param BarcodeGenerator::TYPE_* $type (string) type of barcode * @param int $widthFactor Width of a single bar element in pixels. * @param int $height Height of a single bar element in pixels. * @param array $foregroundColor RGB (0-255) foreground color for bar elements (background is transparent). diff --git a/src/BarcodeGeneratorSVG.php b/src/BarcodeGeneratorSVG.php index e67527f..4d0d477 100644 --- a/src/BarcodeGeneratorSVG.php +++ b/src/BarcodeGeneratorSVG.php @@ -8,7 +8,7 @@ class BarcodeGeneratorSVG extends BarcodeGenerator * Return a SVG string representation of barcode. * * @param $barcode (string) code to print - * @param BarcodeGenerator::Type_* $type (string) type of barcode + * @param BarcodeGenerator::TYPE_* $type (string) type of barcode * @param $widthFactor (float) Minimum width of a single bar in user units. * @param $height (float) Height of barcode in user units. * @param $foregroundColor (string) Foreground color (in SVG format) for bar elements (background is transparent).