Minor adjustments to make configuration easier

This commit is contained in:
Kijin Sung 2016-11-12 15:17:32 +09:00
parent bbd95865c3
commit ddc0da173a
5 changed files with 47 additions and 2 deletions

View file

@ -35,7 +35,20 @@ class CoolSMS extends Base implements \Rhymix\Framework\Drivers\SMSInterface
/**
* Config keys used by this driver are stored here.
*/
protected static $_required_config = array('api_key', 'api_secret', 'sender_key');
protected static $_required_config = array('api_key', 'api_secret');
protected static $_optional_config = array('sender_key');
/**
* Check if the current SMS driver is supported on this server.
*
* This method returns true on success and false on failure.
*
* @return bool
*/
public static function isSupported()
{
return true;
}
/**
* Send a message.