QROptions.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 $dataMode
  24. * @property string $outputType
  25. * @property string $outputInterface
  26. * @property string $cachefile
  27. *
  28. * @property string $eol
  29. * @property int $scale
  30. *
  31. * @property string $cssClass
  32. * @property string $svgOpacity
  33. * @property string $svgDefs
  34. * @property int $svgViewBoxSize
  35. *
  36. * @property string $textDark
  37. * @property string $textLight
  38. *
  39. * @property string $markupDark
  40. * @property string $markupLight
  41. *
  42. * @property bool $imageBase64
  43. * @property bool $imageTransparent
  44. * @property array $imageTransparencyBG
  45. * @property int $pngCompression
  46. * @property int $jpegQuality
  47. *
  48. * @property string $imagickFormat
  49. * @property string $imagickBG
  50. *
  51. * @property array $moduleValues
  52. */
  53. class QROptions extends SettingsContainerAbstract{
  54. use QROptionsTrait;
  55. }