smiley hace 9 años
padre
commit
9044bca211
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -145,15 +145,15 @@ foreach($matrix as $row){
 ```
 
 ### Custom output modules
-But then again, instead of bloating your own code, you can simply create your own output module by extending `QROutputBase` and implementing `QROutputInterface`.
+But then again, instead of bloating your own code, you can simply create your own output module by extending `QROutputAbstract`.
 ```php
 $qrcode = new QRCode($data, new MyCustomOutput($myCustomOutputOptions), $qrOptions)
 ```
 
 ```php
-class MyCustomOutput extends QROutputBase implements QROutputInterface{
+class MyCustomOutput extends QROutputAbstract{
 	
-	// inherited from QROutputBase
+	// inherited from QROutputAbstract
 	protected $matrix; // array
 	protected $pixelCount; // int
 	protected $options; // MyCustomOutputOptions (if present)