smiley 1 год назад
Родитель
Сommit
3252ea6faa
2 измененных файлов с 8 добавлено и 2 удалено
  1. 7 1
      docs/Appendix/URI-Content.md
  2. 1 1
      tests/Output/QROutputTestAbstract.php

+ 7 - 1
docs/Appendix/URI-Content.md

@@ -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
tests/Output/QROutputTestAbstract.php

@@ -45,7 +45,7 @@ abstract class QROutputTestAbstract extends TestCase{
 
 	abstract protected function getOutputInterface(
 		SettingsContainerInterface|QROptions $options,
-		QRMatrix                             $matrix
+		QRMatrix                             $matrix,
 	):QROutputInterface;
 
 	/**