getContent($this->getUrl($qrText, $size)); } public function getUrl(string $qrText, int $size): string { $queryParameters = array( 'cht' => 'qr', 'chs' => ceil($size / 2) . 'x' . ceil($size / 2), 'chld' => $this->errorcorrectionlevel . '|' . $this->margin, 'chl' => $qrText, ); return 'https://image-charts.com/chart?' . http_build_query($queryParameters); } }