summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e641015..2be9555 100644
--- a/README.md
+++ b/README.md
@@ -113,13 +113,13 @@ Let's see if we can use [PHP QR Code](http://phpqrcode.sourceforge.net/) to impl
````php
<?php
-require_once '../../phpqrcode.php'; // Yeah, we're gonna need that
+require_once '../../phpqrcode.php'; // Yeah, we're gonna need that
namespace RobThree\TwoFactorAuth\Providers\Qr
class MyProvider implements IQRCodeProvider {
public function getMimeType() {
- return 'image/png'; // This provider only returns PNG's
+ return 'image/png'; // This provider only returns PNG's
}
public function getQRCodeImage($qrtext, $size) {