mapdev\FacebookMessenger\Exceptions\CouldNotCreateMessage::noRecipientDefined PHP Метод

noRecipientDefined() публичный статический Метод

public static noRecipientDefined ( )
    public static function noRecipientDefined()
    {
        return new static('You must define a recipient PSID for the message to be sent to');
    }

Usage Example

 public function checkRecipient()
 {
     if (!isset($this->recipient_id)) {
         throw CouldNotCreateMessage::noRecipientDefined();
     }
 }