💄 code style fixes

This commit is contained in:
smiley
2023-03-11 02:38:57 +01:00
parent abfd69e44a
commit 6b2a529160
74 changed files with 843 additions and 777 deletions
+17 -20
View File
@@ -23,32 +23,32 @@ $options = new QROptions([
'cachefile' => __DIR__.'/test.eps', // save to file
'moduleValues' => [
// finder
QRMatrix::M_FINDER | QRMatrix::IS_DARK => [0, 63, 255], // dark (true)
QRMatrix::M_FINDER => [233, 233, 233], // light (false)
QRMatrix::M_FINDER_DOT | QRMatrix::IS_DARK => [0, 63, 255], // finder dot, dark (true)
(QRMatrix::M_FINDER | QRMatrix::IS_DARK) => [0, 63, 255], // dark (true)
QRMatrix::M_FINDER => [233, 233, 233], // light (false)
(QRMatrix::M_FINDER_DOT | QRMatrix::IS_DARK) => [0, 63, 255], // finder dot, dark (true)
// alignment
QRMatrix::M_ALIGNMENT | QRMatrix::IS_DARK => [255, 0, 255],
QRMatrix::M_ALIGNMENT => [233, 233, 233],
(QRMatrix::M_ALIGNMENT | QRMatrix::IS_DARK) => [255, 0, 255],
QRMatrix::M_ALIGNMENT => [233, 233, 233],
// timing
QRMatrix::M_TIMING | QRMatrix::IS_DARK => [255, 0, 0],
QRMatrix::M_TIMING => [233, 233, 233],
(QRMatrix::M_TIMING | QRMatrix::IS_DARK) => [255, 0, 0],
QRMatrix::M_TIMING => [233, 233, 233],
// format
QRMatrix::M_FORMAT | QRMatrix::IS_DARK => [67, 159, 84],
QRMatrix::M_FORMAT => [233, 233, 233],
(QRMatrix::M_FORMAT | QRMatrix::IS_DARK) => [67, 159, 84],
QRMatrix::M_FORMAT => [233, 233, 233],
// version
QRMatrix::M_VERSION | QRMatrix::IS_DARK => [62, 174, 190],
QRMatrix::M_VERSION => [233, 233, 233],
(QRMatrix::M_VERSION | QRMatrix::IS_DARK) => [62, 174, 190],
QRMatrix::M_VERSION => [233, 233, 233],
// data
QRMatrix::M_DATA | QRMatrix::IS_DARK => [0, 0, 0],
QRMatrix::M_DATA => [233, 233, 233],
(QRMatrix::M_DATA | QRMatrix::IS_DARK) => [0, 0, 0],
QRMatrix::M_DATA => [233, 233, 233],
// darkmodule
QRMatrix::M_DARKMODULE | QRMatrix::IS_DARK => [0, 0, 0],
(QRMatrix::M_DARKMODULE | QRMatrix::IS_DARK) => [0, 0, 0],
// separator
QRMatrix::M_SEPARATOR => [233, 233, 233],
QRMatrix::M_SEPARATOR => [233, 233, 233],
// quietzone
QRMatrix::M_QUIETZONE => [233, 233, 233],
QRMatrix::M_QUIETZONE => [233, 233, 233],
// logo (requires a call to QRMatrix::setLogoSpace()), see QRImageWithLogo
QRMatrix::M_LOGO => [233, 233, 233],
QRMatrix::M_LOGO => [233, 233, 233],
],
]);
@@ -62,6 +62,3 @@ if(php_sapi_name() !== 'cli'){
echo (new QRCode($options))->render('https://www.youtube.com/watch?v=dQw4w9WgXcQ');
exit;