for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Fazland\SkebbyRestClient\Constant;
/**
* Represents the Skebby SendMethods.
*
* @author Massimiliano Braglia <[email protected]>
*/
class SendMethods
{
* Represents send method classic (simple SMS without delivery report).
* @const
const CLASSIC = 'send_sms_classic';
* Represents send method classic plus (simple SMS with delivery report).
const CLASSIC_PLUS = 'send_sms_classic_report';
* Represents send method basic (simple SMS without delivery warranty and delivery report).
const BASIC = 'send_sms_basic';
* IT WON'T SEND SMS.
const TEST_CLASSIC = 'test_send_sms_classic';
const TEST_CLASSIC_PLUS = 'test_send_sms_classic_report';
const TEST_BASIC = 'test_send_sms_basic';
public static function all()
$reflectedClass = new \ReflectionClass(__CLASS__);
return $reflectedClass->getConstants();
}