Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: EndroidQrImageGenerator.php
<?php namespace Dolondro\GoogleAuthenticator\QrImageGenerator; use Dolondro\GoogleAuthenticator\Secret; use Endroid\QrCode\QrCode; class EndroidQrImageGenerator implements QrImageGeneratorInterface { protected $size; protected $writer; public function __construct($size = 200, $writer = 'png') { if (!is_numeric($size)) { throw new \InvalidArgumentException("Size is required to be numeric"); } $this->size = $size; $this->writer = $writer; } public function generateUri(Secret $secret) { $qrCode = new QrCode($secret->getUri()); $qrCode->setSize($this->size); $qrCode->setWriterByName($this->writer); return $qrCode->writeDataUri(); } }