for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\WhatsApp\Component;
class Image extends Component
{
/**
* Link to the image; e.g. https://URL.
*/
protected string $link;
public function __construct(string $link)
$this->link = $link;
}
public function toArray(): array
return [
'type' => 'image',
'image' => [
'link' => $this->link,
],
];