We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc927d4 commit cd5d802Copy full SHA for cd5d802
src/Type/Square/QrCode/SpecRs.php
@@ -220,7 +220,7 @@ public function createFrame(int $version): array
220
* @param int $xpos X position
221
* @param int $ypos Y position
222
* @param string $repl Value to replace
223
- * @param int $replLen Length of the repl string
+ * @param int|null $replLen Length of the repl string
224
*
225
* @return array<int, string> srctab
226
*/
@@ -229,7 +229,7 @@ public function qrstrset(
229
int $xpos,
230
int $ypos,
231
string $repl,
232
- int $replLen = null
+ ?int $replLen = null
233
): array {
234
$srctab[$ypos] = substr_replace(
235
$srctab[$ypos],
0 commit comments