for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kerox\Messenger\Message\Attachment;
use Kerox\Messenger\Message\Attachment;
class Audio extends File
{
/**
* Audio constructor.
*
* @param string $url
* @param bool|null $reusable
*/
public function __construct($url, bool $reusable = null)
parent::__construct($url, $reusable, Attachment::TYPE_AUDIO);
}