소스 검색

:octocat:

smiley 9 년 전
부모
커밋
9044bca211
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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)