Updated common and qr-code

This commit is contained in:
Alejandro Celaya 2019-10-15 19:06:37 +02:00
parent eb17eae781
commit 0f5e4e7fa2
2 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@
"doctrine/dbal": "^2.9",
"doctrine/migrations": "^2.0",
"doctrine/orm": "^2.5",
"endroid/qr-code": "^1.7",
"endroid/qr-code": "^3.6",
"firebase/php-jwt": "^4.0",
"geoip2/geoip2": "^2.9",
"guzzlehttp/guzzle": "^6.3",
@ -34,7 +34,7 @@
"phly/phly-event-dispatcher": "^1.0",
"predis/predis": "^1.1",
"pugx/shortid-php": "^0.5",
"shlinkio/shlink-common": "^2.0",
"shlinkio/shlink-common": "^2.1",
"shlinkio/shlink-event-dispatcher": "^1.0",
"shlinkio/shlink-installer": "^2.1",
"shlinkio/shlink-ip-geolocation": "^1.0",

View File

@ -70,8 +70,8 @@ class QrCodeAction implements MiddlewareInterface
$size = $this->getSizeParam($request);
$qrCode = new QrCode((string) $request->getUri()->withPath($path)->withQuery(''));
$qrCode->setSize($size)
->setPadding(0);
$qrCode->setSize($size);
$qrCode->setMargin(0);
return new QrCodeResponse($qrCode);
}