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

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

public static noStickerDefined ( )
    public static function noStickerDefined()
    {
        return new static('You must define an Sticker');
    }

Usage Example

 public function toArray()
 {
     $this->checkRecipient();
     if (is_null($this->sticker)) {
         throw CouldNotCreateMessage::noStickerDefined();
     }
     return ['recipient' => ['id' => $this->recipient_id], 'sticker_id' => $this->sticker];
 }