for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cion\TextToSpeech\Traits;
trait HasLanguage
{
/**
* @var string
*/
protected $language;
* Sets the language to be used.
*
* @param string $language
* @return $this
public function language(string $language)
$this->language = $language;
return $this;
}