for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\I18n\Event;
class MissingTranslationEvent
{
/**
* @var string
*/
private $category;
private $language;
private $message;
public function __construct(string $category, string $language, string $message)
$this->category = $category;
$this->language = $language;
$this->message = $message;
}
* @return string
public function getCategory(): string
return $this->category;
public function getLanguage(): string
return $this->language;
public function getMessage(): string
return $this->message;