for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BitWasp\PinEntry;
class Command
{
const SETDESC = 'SETDESC';
const SETPROMPT = 'SETPROMPT';
const SETKEYINFO = 'SETKEYINFO';
const SETREPEAT = 'SETREPEAT';
const SETTITLE = 'SETTITLE';
const SETERROR = 'SETERROR';
const SETOK = 'SETOK';
const SETNOTOK = 'SETNOTOK';
const SETCANCEL = 'SETCANCEL';
const SETREPEATERROR = 'SETREPEATERROR';
const SETTIMEOUT = 'SETTIMEOUT';
const SETQUALITYBAR = 'SETQUALITYBAR';
const SETQUALITYBAR_TT = 'SETQUALITYBAR_TT';
const OPTION = 'OPTIONS';
const GETPIN = 'GETPIN';
const GETINFO = 'GETINFO';
}