Revert "Language names via intl library."

This commit is contained in:
RedMatrix
2014-12-31 10:43:19 +11:00
parent ae9d08267c
commit 4f35efa0ba
994 changed files with 7 additions and 498717 deletions

View File

@@ -1,7 +0,0 @@
<?php
namespace CommerceGuys\Intl\Exception;
interface ExceptionInterface
{
}

View File

@@ -1,11 +0,0 @@
<?php
namespace CommerceGuys\Intl\Exception;
/**
* This exception is thrown when an invalid argument is passed to a method.
* For example, a float amount instead of the expected string amount.
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}

View File

@@ -1,11 +0,0 @@
<?php
namespace CommerceGuys\Intl\Exception;
/**
* This exception is thrown when an unknown country code is passed to the
* CountryRepository.
*/
class UnknownCountryException extends InvalidArgumentException implements ExceptionInterface
{
}

View File

@@ -1,11 +0,0 @@
<?php
namespace CommerceGuys\Intl\Exception;
/**
* This exception is thrown when an unknown currency code is passed to the
* CurrencyRepository.
*/
class UnknownCurrencyException extends InvalidArgumentException implements ExceptionInterface
{
}

View File

@@ -1,11 +0,0 @@
<?php
namespace CommerceGuys\Intl\Exception;
/**
* This exception is thrown when an unknown language code is passed to the
* LanguageRepository.
*/
class UnknownLanguageException extends InvalidArgumentException implements ExceptionInterface
{
}

View File

@@ -1,10 +0,0 @@
<?php
namespace CommerceGuys\Intl\Exception;
/**
* This exception is thrown when an unknown locale is passed to a repository.
*/
class UnknownLocaleException extends InvalidArgumentException implements ExceptionInterface
{
}