public function AbstractOperation::getNewMessages in Plug 7
Returns new messages after operation.
Parameters
string $domain:
Return value
array
Overrides OperationInterface::getNewMessages
File
- lib/
Symfony/ translation/ Catalogue/ AbstractOperation.php, line 99
Class
- AbstractOperation
- Base catalogues binary operation class.
Namespace
Symfony\Component\Translation\CatalogueCode
public function getNewMessages($domain) {
if (!in_array($domain, $this
->getDomains())) {
throw new \InvalidArgumentException(sprintf('Invalid domain: %s.', $domain));
}
if (!isset($this->messages[$domain]['new'])) {
$this
->processDomain($domain);
}
return $this->messages[$domain]['new'];
}