This commit is contained in:
smiley
2024-03-07 00:15:22 +01:00
parent e5ba986edb
commit 3252ea6faa
2 changed files with 8 additions and 2 deletions
+7 -1
View File
@@ -64,7 +64,7 @@ A phone number should be prefixed with the `tel:` scheme so that a device's dial
tel:+999-123-456-7890
```
Generally, the most complete version of a telephone number possible sould be used, e.g. `+<country code><area code><number>`, spaces or hyphens may be used to separate blocks.
Generally, the most complete version of a telephone number possible should be used, e.g. `+<country code><area code><number>`, spaces or hyphens may be used to separate blocks.
Some devices may also support the `sms` and `fax` schemes, which are deprecated in favor of `tel`.
**See also:**
@@ -251,6 +251,12 @@ END:VCALENDAR
- [iCalendar generator for PHP (GitHub)](https://github.com/spatie/icalendar-generator)
## SEPA Credit Transfer
- [Guidelines to Enable the Data Capture for the Initiation of a SEPA Credit Transfer](https://www.europeanpaymentscouncil.eu/document-library/guidance-documents/quick-response-code-guidelines-enable-data-capture-initiation)
- [sepa-qr-data library for PHP (GitHub)](https://github.com/smhg/sepa-qr-data-php)
## See also
- [RFC 3986 - Uniform Resource Identifier (URI): Generic Syntax](https://datatracker.ietf.org/doc/html/rfc3986)
+1 -1
View File
@@ -45,7 +45,7 @@ abstract class QROutputTestAbstract extends TestCase{
abstract protected function getOutputInterface(
SettingsContainerInterface|QROptions $options,
QRMatrix $matrix
QRMatrix $matrix,
):QROutputInterface;
/**