ALPHA 3.0.2a

This commit is contained in:
TheGamecraft
2018-09-10 08:51:18 -04:00
parent 7fe13ae0a7
commit 0e0ef86b71
1404 changed files with 10604 additions and 33714 deletions

View File

@@ -11,10 +11,10 @@
namespace Symfony\Component\Translation\Catalogue;
use Symfony\Component\Translation\MessageCatalogue;
use Symfony\Component\Translation\MessageCatalogueInterface;
use Symfony\Component\Translation\Exception\InvalidArgumentException;
use Symfony\Component\Translation\Exception\LogicException;
use Symfony\Component\Translation\MessageCatalogue;
use Symfony\Component\Translation\MessageCatalogueInterface;
/**
* Base catalogues binary operation class.
@@ -91,7 +91,7 @@ abstract class AbstractOperation implements OperationInterface
*/
public function getMessages($domain)
{
if (!in_array($domain, $this->getDomains())) {
if (!\in_array($domain, $this->getDomains())) {
throw new InvalidArgumentException(sprintf('Invalid domain: %s.', $domain));
}
@@ -107,7 +107,7 @@ abstract class AbstractOperation implements OperationInterface
*/
public function getNewMessages($domain)
{
if (!in_array($domain, $this->getDomains())) {
if (!\in_array($domain, $this->getDomains())) {
throw new InvalidArgumentException(sprintf('Invalid domain: %s.', $domain));
}
@@ -123,7 +123,7 @@ abstract class AbstractOperation implements OperationInterface
*/
public function getObsoleteMessages($domain)
{
if (!in_array($domain, $this->getDomains())) {
if (!\in_array($domain, $this->getDomains())) {
throw new InvalidArgumentException(sprintf('Invalid domain: %s.', $domain));
}