for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cion\TextToSpeech\Traits;
trait SSMLable
{
/**
* @var string
*/
protected $textType = 'text';
* Sets the text type to ssml default is text.
*
* @return $this
public function ssml()
$this->textType = 'ssml';
return $this;
}