QROptions.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. * The QRCode settings container
  16. *
  17. * @property int $version
  18. * @property int $versionMin
  19. * @property int $versionMax
  20. * @property int $eccLevel
  21. * @property int $maskPattern
  22. * @property bool $addQuietzone
  23. * @property int $quietzoneSize
  24. * @property string|null $dataModeOverride
  25. * @property string $outputType
  26. * @property string|null $outputInterface
  27. * @property string|null $cachefile
  28. * @property string $eol
  29. * @property int $scale
  30. * @property string $cssClass
  31. * @property float $svgOpacity
  32. * @property string $svgDefs
  33. * @property int $svgViewBoxSize
  34. * @property string $textDark
  35. * @property string $textLight
  36. * @property string $markupDark
  37. * @property string $markupLight
  38. * @property bool $imageBase64
  39. * @property bool $imageTransparent
  40. * @property array $imageTransparencyBG
  41. * @property int $pngCompression
  42. * @property int $jpegQuality
  43. * @property string $imagickFormat
  44. * @property string|null $imagickBG
  45. * @property array|null $moduleValues
  46. */
  47. class QROptions extends SettingsContainerAbstract{
  48. use QROptionsTrait;
  49. }