PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
bacon
/
bacon-qr-code
/
src
/
Renderer
/
RendererStyle
/
Editing: GradientType.php
<?php declare(strict_types = 1); namespace BaconQrCode\Renderer\RendererStyle; use DASPRiD\Enum\AbstractEnum; /** * @method static self VERTICAL() * @method static self HORIZONTAL() * @method static self DIAGONAL() * @method static self INVERSE_DIAGONAL() * @method static self RADIAL() */ final class GradientType extends AbstractEnum { protected const VERTICAL = null; protected const HORIZONTAL = null; protected const DIAGONAL = null; protected const INVERSE_DIAGONAL = null; protected const RADIAL = null; }
SAVE
CANCEL