diff --git a/classes/chillerlan-QRCode-Data-QRMatrix.html b/classes/chillerlan-QRCode-Data-QRMatrix.html
index f480984c6..42db1f157 100644
--- a/classes/chillerlan-QRCode-Data-QRMatrix.html
+++ b/classes/chillerlan-QRCode-Data-QRMatrix.html
@@ -1754,7 +1754,7 @@ returns true if a match is found, otherwise false.
public
- checkNeighbours(int $x, int $y[, int $M_TYPE = null ]) : int
+ checkNeighbours(int $x, int $y[, int|null $M_TYPE = null ]) : int
@@ -1784,7 +1784,7 @@ starting with the lowest bit for top left, going clockwise:
$M_TYPE
- : int
+ : int|null
= null
@@ -2143,7 +2143,7 @@ returns true if a match is found, otherwise false.
public
- getMatrix([bool $boolean = null ]) : array<string|int, array<string|int, int>>|array<string|int, array<string|int, bool>>
+ getMatrix([bool|null $boolean = null ]) : array<string|int, array<string|int, int>>|array<string|int, array<string|int, bool>>
@@ -2153,7 +2153,7 @@ returns true if a match is found, otherwise false.
-
$boolean
- : bool
+ : bool|null
= null
-
@@ -2771,7 +2771,7 @@ false => $M_TYPE
public
- setFormatInfo([MaskPattern $maskPattern = null ]) : static
+ setFormatInfo([MaskPattern|null $maskPattern = null ]) : static
@@ -2783,7 +2783,7 @@ false => $M_TYPE
-
$maskPattern
- : MaskPattern
+ : MaskPattern|null
= null
-
@@ -2822,7 +2822,7 @@ false => $M_TYPE
public
- setLogoSpace(int $width[, int $height = null ][, int $startX = null ][, int $startY = null ]) : static
+ setLogoSpace(int $width[, int|null $height = null ][, int|null $startX = null ][, int|null $startY = null ]) : static
@@ -2851,21 +2851,21 @@ Note that there is no restiction on how many times this method could be called o
-
$height
- : int
+ : int|null
= null
-
-
$startX
- : int
+ : int|null
= null
-
-
$startY
- : int
+ : int|null
= null
-
diff --git a/classes/chillerlan-QRCode-Decoder-BitMatrix.html b/classes/chillerlan-QRCode-Decoder-BitMatrix.html
index 20996761a..f397eb7a3 100644
--- a/classes/chillerlan-QRCode-Decoder-BitMatrix.html
+++ b/classes/chillerlan-QRCode-Decoder-BitMatrix.html
@@ -2073,7 +2073,7 @@ QR Code. Throws if the exact number of bytes expected is not read.
public
- checkNeighbours(int $x, int $y[, int $M_TYPE = null ]) : int
+ checkNeighbours(int $x, int $y[, int|null $M_TYPE = null ]) : int
@@ -2103,7 +2103,7 @@ starting with the lowest bit for top left, going clockwise:
-
$M_TYPE
- : int
+ : int|null
= null
-
@@ -2462,7 +2462,7 @@ returns true if a match is found, otherwise false.
public
- getMatrix([bool $boolean = null ]) : array<string|int, array<string|int, int>>|array<string|int, array<string|int, bool>>
+ getMatrix([bool|null $boolean = null ]) : array<string|int, array<string|int, int>>|array<string|int, array<string|int, bool>>
@@ -2472,7 +2472,7 @@ returns true if a match is found, otherwise false.
-
$boolean
- : bool
+ : bool|null
= null
-
@@ -3224,7 +3224,7 @@ false => $M_TYPE
public
- setFormatInfo([MaskPattern $maskPattern = null ]) : static
+ setFormatInfo([MaskPattern|null $maskPattern = null ]) : static
@@ -3236,7 +3236,7 @@ false => $M_TYPE
-
$maskPattern
- : MaskPattern
+ : MaskPattern|null
= null
-
@@ -3275,7 +3275,7 @@ false => $M_TYPE
public
- setLogoSpace(int $width[, int $height = null ][, int $startX = null ][, int $startY = null ]) : static
+ setLogoSpace(int $width[, int|null $height = null ][, int|null $startX = null ][, int|null $startY = null ]) : static
@@ -3292,21 +3292,21 @@ false => $M_TYPE
-
$height
- : int
+ : int|null
= null
-
-
$startX
- : int
+ : int|null
= null
-
-
$startY
- : int
+ : int|null
= null
-
@@ -3367,7 +3367,7 @@ false => $M_TYPE
public
- setQuietZone([int $quietZoneSize = null ]) : static
+ setQuietZone([int|null $quietZoneSize = null ]) : static
@@ -3377,7 +3377,7 @@ false => $M_TYPE
-
$quietZoneSize
- : int
+ : int|null
= null
-
diff --git a/classes/chillerlan-QRCode-Decoder-DecoderResult.html b/classes/chillerlan-QRCode-Decoder-DecoderResult.html
index cff6be9c6..935be4bc5 100644
--- a/classes/chillerlan-QRCode-Decoder-DecoderResult.html
+++ b/classes/chillerlan-QRCode-Decoder-DecoderResult.html
@@ -859,7 +859,7 @@ as well as a String interpretation of those bytes, if applicable.
public
- __construct([iterable<string|int, mixed> $properties = null ]) : mixed
+ __construct([iterable<string|int, mixed>|null $properties = null ]) : mixed
@@ -869,7 +869,7 @@ as well as a String interpretation of those bytes, if applicable.
-
$properties
- : iterable<string|int, mixed>
+ : iterable<string|int, mixed>|null
= null
-
diff --git a/classes/chillerlan-QRCode-Detector-Detector.html b/classes/chillerlan-QRCode-Detector-Detector.html
index 9f6a8179a..0dbce08ef 100644
--- a/classes/chillerlan-QRCode-Detector-Detector.html
+++ b/classes/chillerlan-QRCode-Detector-Detector.html
@@ -671,7 +671,7 @@ of the finder patterns and estimated module size.
private
- createTransform(FinderPattern $nw, FinderPattern $ne, FinderPattern $sw, int $size[, AlignmentPattern $ap = null ]) : PerspectiveTransform
+ createTransform(FinderPattern $nw, FinderPattern $ne, FinderPattern $sw, int $size[, AlignmentPattern|null $ap = null ]) : PerspectiveTransform
@@ -709,7 +709,7 @@ of the finder patterns and estimated module size.
-
$ap
- : AlignmentPattern
+ : AlignmentPattern|null
= null
-
diff --git a/classes/chillerlan-QRCode-Detector-FinderPattern.html b/classes/chillerlan-QRCode-Detector-FinderPattern.html
index 6ce17c23f..968342d2f 100644
--- a/classes/chillerlan-QRCode-Detector-FinderPattern.html
+++ b/classes/chillerlan-QRCode-Detector-FinderPattern.html
@@ -497,7 +497,7 @@ based on count.
public
- __construct(float $posX, float $posY, float $estimatedModuleSize[, int $count = null ]) : mixed
+ __construct(float $posX, float $posY, float $estimatedModuleSize[, int|null $count = null ]) : mixed
@@ -528,7 +528,7 @@ based on count.
-
$count
- : int
+ : int|null
= null
-
diff --git a/classes/chillerlan-QRCode-Detector-PerspectiveTransform.html b/classes/chillerlan-QRCode-Detector-PerspectiveTransform.html
index 3fd8b28db..eca96857f 100644
--- a/classes/chillerlan-QRCode-Detector-PerspectiveTransform.html
+++ b/classes/chillerlan-QRCode-Detector-PerspectiveTransform.html
@@ -843,7 +843,7 @@ directly upon section 3.4.2 of George Wolberg's "Digital Image Warping
public
- transformPoints(array<string|int, mixed> $xValues[, array<string|int, mixed> $yValues = null ]) : array<string|int, array<string|int, mixed>>
+ transformPoints(array<string|int, mixed> $xValues[, array<string|int, mixed>|null $yValues = null ]) : array<string|int, array<string|int, mixed>>
@@ -860,7 +860,7 @@ directly upon section 3.4.2 of George Wolberg's "Digital Image Warping
-
$yValues
- : array<string|int, mixed>
+ : array<string|int, mixed>|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QREps.html b/classes/chillerlan-QRCode-Output-QREps.html
index 6077dc5ab..28d701bd6 100644
--- a/classes/chillerlan-QRCode-Output-QREps.html
+++ b/classes/chillerlan-QRCode-Output-QREps.html
@@ -1227,7 +1227,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string
+ dump([string|null $file = null ]) : string
@@ -1237,7 +1237,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1857,7 +1857,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1874,7 +1874,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2012,7 +2012,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2029,7 +2029,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRFpdf.html b/classes/chillerlan-QRCode-Output-QRFpdf.html
index bf0798015..412089c27 100644
--- a/classes/chillerlan-QRCode-Output-QRFpdf.html
+++ b/classes/chillerlan-QRCode-Output-QRFpdf.html
@@ -1310,7 +1310,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ][, FPDF $fpdf = null ]) : string|FPDF
+ dump([string|null $file = null ][, FPDF|null $fpdf = null ]) : string|FPDF
@@ -1320,14 +1320,14 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
-
$fpdf
- : FPDF
+ : FPDF|null
= null
-
@@ -1948,7 +1948,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1965,7 +1965,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2103,7 +2103,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2120,7 +2120,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRGdImage.html b/classes/chillerlan-QRCode-Output-QRGdImage.html
index d547bb7dc..479cda1cb 100644
--- a/classes/chillerlan-QRCode-Output-QRGdImage.html
+++ b/classes/chillerlan-QRCode-Output-QRGdImage.html
@@ -1414,7 +1414,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|GdImage
+ dump([string|null $file = null ]) : string|GdImage
@@ -1424,7 +1424,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2250,7 +2250,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2267,7 +2267,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2475,7 +2475,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2492,7 +2492,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRGdImageAVIF.html b/classes/chillerlan-QRCode-Output-QRGdImageAVIF.html
index 79ed663bc..0ad631db0 100644
--- a/classes/chillerlan-QRCode-Output-QRGdImageAVIF.html
+++ b/classes/chillerlan-QRCode-Output-QRGdImageAVIF.html
@@ -1452,7 +1452,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|GdImage
+ dump([string|null $file = null ]) : string|GdImage
@@ -1462,7 +1462,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2287,7 +2287,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2304,7 +2304,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2512,7 +2512,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2529,7 +2529,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRGdImageBMP.html b/classes/chillerlan-QRCode-Output-QRGdImageBMP.html
index b5a7069a3..7ee14672a 100644
--- a/classes/chillerlan-QRCode-Output-QRGdImageBMP.html
+++ b/classes/chillerlan-QRCode-Output-QRGdImageBMP.html
@@ -1452,7 +1452,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|GdImage
+ dump([string|null $file = null ]) : string|GdImage
@@ -1462,7 +1462,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2287,7 +2287,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2304,7 +2304,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2512,7 +2512,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2529,7 +2529,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRGdImageGIF.html b/classes/chillerlan-QRCode-Output-QRGdImageGIF.html
index 0a633dff5..1af86e8cb 100644
--- a/classes/chillerlan-QRCode-Output-QRGdImageGIF.html
+++ b/classes/chillerlan-QRCode-Output-QRGdImageGIF.html
@@ -1452,7 +1452,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|GdImage
+ dump([string|null $file = null ]) : string|GdImage
@@ -1462,7 +1462,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2287,7 +2287,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2304,7 +2304,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2512,7 +2512,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2529,7 +2529,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRGdImageJPEG.html b/classes/chillerlan-QRCode-Output-QRGdImageJPEG.html
index 0c0486f03..de5749690 100644
--- a/classes/chillerlan-QRCode-Output-QRGdImageJPEG.html
+++ b/classes/chillerlan-QRCode-Output-QRGdImageJPEG.html
@@ -1452,7 +1452,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|GdImage
+ dump([string|null $file = null ]) : string|GdImage
@@ -1462,7 +1462,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2287,7 +2287,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2304,7 +2304,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2526,7 +2526,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2543,7 +2543,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRGdImagePNG.html b/classes/chillerlan-QRCode-Output-QRGdImagePNG.html
index 704aa44f1..7c8956889 100644
--- a/classes/chillerlan-QRCode-Output-QRGdImagePNG.html
+++ b/classes/chillerlan-QRCode-Output-QRGdImagePNG.html
@@ -1452,7 +1452,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|GdImage
+ dump([string|null $file = null ]) : string|GdImage
@@ -1462,7 +1462,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2287,7 +2287,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2304,7 +2304,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2512,7 +2512,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2529,7 +2529,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRGdImageWEBP.html b/classes/chillerlan-QRCode-Output-QRGdImageWEBP.html
index aeaa9a3fc..f9b7843cc 100644
--- a/classes/chillerlan-QRCode-Output-QRGdImageWEBP.html
+++ b/classes/chillerlan-QRCode-Output-QRGdImageWEBP.html
@@ -1452,7 +1452,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|GdImage
+ dump([string|null $file = null ]) : string|GdImage
@@ -1462,7 +1462,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2287,7 +2287,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2304,7 +2304,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2512,7 +2512,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2529,7 +2529,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRImagick.html b/classes/chillerlan-QRCode-Output-QRImagick.html
index 459fe23b5..bc97ff972 100644
--- a/classes/chillerlan-QRCode-Output-QRImagick.html
+++ b/classes/chillerlan-QRCode-Output-QRImagick.html
@@ -1335,7 +1335,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|Imagick
+ dump([string|null $file = null ]) : string|Imagick
@@ -1345,7 +1345,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1977,7 +1977,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1994,7 +1994,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2202,7 +2202,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2219,7 +2219,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRInterventionImage.html b/classes/chillerlan-QRCode-Output-QRInterventionImage.html
index e6d01933b..f338f2b27 100644
--- a/classes/chillerlan-QRCode-Output-QRInterventionImage.html
+++ b/classes/chillerlan-QRCode-Output-QRInterventionImage.html
@@ -1306,7 +1306,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string|ImageInterface
+ dump([string|null $file = null ]) : string|ImageInterface
@@ -1316,7 +1316,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1958,7 +1958,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1975,7 +1975,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2113,7 +2113,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2130,7 +2130,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRMarkup.html b/classes/chillerlan-QRCode-Output-QRMarkup.html
index 87b2d93e6..70ff5a216 100644
--- a/classes/chillerlan-QRCode-Output-QRMarkup.html
+++ b/classes/chillerlan-QRCode-Output-QRMarkup.html
@@ -1141,7 +1141,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string
+ dump([string|null $file = null ]) : string
@@ -1151,7 +1151,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1380,7 +1380,7 @@ in long loops for a significant performance increase.
@@ -1429,7 +1429,7 @@ in long loops for a significant performance increase.
@@ -1783,7 +1783,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1800,7 +1800,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1938,7 +1938,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -1955,7 +1955,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRMarkupHTML.html b/classes/chillerlan-QRCode-Output-QRMarkupHTML.html
index bda46416c..1e6e741e3 100644
--- a/classes/chillerlan-QRCode-Output-QRMarkupHTML.html
+++ b/classes/chillerlan-QRCode-Output-QRMarkupHTML.html
@@ -1187,7 +1187,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string
+ dump([string|null $file = null ]) : string
@@ -1197,7 +1197,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1489,7 +1489,7 @@ in long loops for a significant performance increase.
@@ -1843,7 +1843,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1860,7 +1860,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1998,7 +1998,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2015,7 +2015,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRMarkupSVG.html b/classes/chillerlan-QRCode-Output-QRMarkupSVG.html
index ced9e21d3..e210df6de 100644
--- a/classes/chillerlan-QRCode-Output-QRMarkupSVG.html
+++ b/classes/chillerlan-QRCode-Output-QRMarkupSVG.html
@@ -1284,7 +1284,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string
+ dump([string|null $file = null ]) : string
@@ -1294,7 +1294,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1877,7 +1877,7 @@ in long loops for a significant performance increase.
@@ -1939,7 +1939,7 @@ in long loops for a significant performance increase.
@@ -1993,7 +1993,7 @@ in long loops for a significant performance increase.
@@ -2071,7 +2071,7 @@ in long loops for a significant performance increase.
@@ -2142,7 +2142,7 @@ in long loops for a significant performance increase.
@@ -2260,7 +2260,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2277,7 +2277,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2415,7 +2415,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2432,7 +2432,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRMarkupXML.html b/classes/chillerlan-QRCode-Output-QRMarkupXML.html
index 8b2f297a9..a25a19514 100644
--- a/classes/chillerlan-QRCode-Output-QRMarkupXML.html
+++ b/classes/chillerlan-QRCode-Output-QRMarkupXML.html
@@ -1287,7 +1287,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string
+ dump([string|null $file = null ]) : string
@@ -1297,7 +1297,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1589,7 +1589,7 @@ in long loops for a significant performance increase.
@@ -1628,7 +1628,7 @@ in long loops for a significant performance increase.
@@ -1915,7 +1915,7 @@ in long loops for a significant performance increase.
@@ -2049,7 +2049,7 @@ in long loops for a significant performance increase.
@@ -2113,7 +2113,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -2130,7 +2130,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2268,7 +2268,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2285,7 +2285,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QROutputAbstract.html b/classes/chillerlan-QRCode-Output-QROutputAbstract.html
index 52876d35a..f33b999ce 100644
--- a/classes/chillerlan-QRCode-Output-QROutputAbstract.html
+++ b/classes/chillerlan-QRCode-Output-QROutputAbstract.html
@@ -1457,7 +1457,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1474,7 +1474,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1612,7 +1612,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -1629,7 +1629,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QROutputInterface.html b/classes/chillerlan-QRCode-Output-QROutputInterface.html
index 82e4424d0..262accd8e 100644
--- a/classes/chillerlan-QRCode-Output-QROutputInterface.html
+++ b/classes/chillerlan-QRCode-Output-QROutputInterface.html
@@ -529,7 +529,7 @@
public
- dump([string $file = null ]) : mixed
+ dump([string|null $file = null ]) : mixed
@@ -543,7 +543,7 @@ you need to supply the $file parameter here in that case (or handle the option v
-
$file
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRStringJSON.html b/classes/chillerlan-QRCode-Output-QRStringJSON.html
index 89ff516b6..9dd4c361d 100644
--- a/classes/chillerlan-QRCode-Output-QRStringJSON.html
+++ b/classes/chillerlan-QRCode-Output-QRStringJSON.html
@@ -1227,7 +1227,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string
+ dump([string|null $file = null ]) : string
@@ -1237,7 +1237,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1910,7 +1910,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1927,7 +1927,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -2065,7 +2065,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -2082,7 +2082,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-Output-QRStringText.html b/classes/chillerlan-QRCode-Output-QRStringText.html
index ceb09333d..963cd931c 100644
--- a/classes/chillerlan-QRCode-Output-QRStringText.html
+++ b/classes/chillerlan-QRCode-Output-QRStringText.html
@@ -1181,7 +1181,7 @@ in long loops for a significant performance increase.
public
- static ansi8(string $str, int $color[, bool $background = null ]) : string
+ static ansi8(string $str, int $color[, bool|null $background = null ]) : string
@@ -1205,7 +1205,7 @@ in long loops for a significant performance increase.
-
$background
- : bool
+ : bool|null
= null
-
@@ -1274,7 +1274,7 @@ in long loops for a significant performance increase.
public
- dump([string $file = null ]) : string
+ dump([string|null $file = null ]) : string
@@ -1284,7 +1284,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1775,7 +1775,7 @@ in long loops for a significant performance increase.
protected
- saveToFile(string $data[, string $file = null ]) : void
+ saveToFile(string $data[, string|null $file = null ]) : void
@@ -1792,7 +1792,7 @@ in long loops for a significant performance increase.
-
$file
- : string
+ : string|null
= null
-
@@ -1930,7 +1930,7 @@ in long loops for a significant performance increase.
protected
- toBase64DataURI(string $data[, string $mime = null ]) : string
+ toBase64DataURI(string $data[, string|null $mime = null ]) : string
@@ -1947,7 +1947,7 @@ in long loops for a significant performance increase.
-
$mime
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCode-QRCode.html b/classes/chillerlan-QRCode-QRCode.html
index a4cd2c021..958a4190b 100644
--- a/classes/chillerlan-QRCode-QRCode.html
+++ b/classes/chillerlan-QRCode-QRCode.html
@@ -1263,7 +1263,7 @@ ISO/IEC 18004:2000 Annex H - Optimisation of bit stream length
public
- render([string $data = null ][, string $file = null ]) : mixed
+ render([string|null $data = null ][, string|null $file = null ]) : mixed
@@ -1273,14 +1273,14 @@ ISO/IEC 18004:2000 Annex H - Optimisation of bit stream length
-
$data
- : string
+ : string|null
= null
-
-
$file
- : string
+ : string|null
= null
-
@@ -1315,7 +1315,7 @@ ISO/IEC 18004:2000 Annex H - Optimisation of bit stream length
public
- renderMatrix(QRMatrix $matrix[, string $file = null ]) : mixed
+ renderMatrix(QRMatrix $matrix[, string|null $file = null ]) : mixed
@@ -1332,7 +1332,7 @@ ISO/IEC 18004:2000 Annex H - Optimisation of bit stream length
-
$file
- : string
+ : string|null
= null
-
diff --git a/classes/chillerlan-QRCodeTest-Common-ECICharsetTest.html b/classes/chillerlan-QRCodeTest-Common-ECICharsetTest.html
index 1eb4c4048..c378f13e6 100644
--- a/classes/chillerlan-QRCodeTest-Common-ECICharsetTest.html
+++ b/classes/chillerlan-QRCodeTest-Common-ECICharsetTest.html
@@ -324,7 +324,7 @@
public
- testGetName(int $id[, string $name = null ]) : void
+ testGetName(int $id[, string|null $name = null ]) : void
@@ -341,7 +341,7 @@
-
$name
- : string
+ : string|null
= null
-