QROptions.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * Class QROptions
  4. *
  5. * @filesource QROptions.php
  6. * @created 08.12.2015
  7. * @package chillerlan\QRCode
  8. * @author Smiley <smiley@chillerlan.net>
  9. * @copyright 2015 Smiley
  10. * @license MIT
  11. */
  12. namespace chillerlan\QRCode;
  13. use chillerlan\Settings\SettingsContainerAbstract;
  14. /**
  15. * @property int $version
  16. * @property int $versionMin
  17. * @property int $versionMax
  18. * @property int $eccLevel
  19. * @property int $maskPattern
  20. * @property bool $addQuietzone
  21. * @property bool $quietzoneSize
  22. *
  23. * @property string $outputType
  24. * @property string $outputInterface
  25. * @property string $cachefile
  26. *
  27. * @property string $eol
  28. * @property int $scale
  29. *
  30. * @property string $cssClass
  31. * @property string $svgOpacity
  32. * @property string $svgDefs
  33. * @property int $svgViewBoxSize
  34. *
  35. * @property string $textDark
  36. * @property string $textLight
  37. *
  38. * @property string $markupDark
  39. * @property string $markupLight
  40. *
  41. * @property bool $imageBase64
  42. * @property bool $imageTransparent
  43. * @property array $imageTransparencyBG
  44. * @property int $pngCompression
  45. * @property int $jpegQuality
  46. *
  47. * @property string $imagickFormat
  48. * @property string $imagickBG
  49. *
  50. * @property array $moduleValues
  51. */
  52. class QROptions extends SettingsContainerAbstract{
  53. use QROptionsTrait;
  54. }