Skip to content

Commit 2021b24

Browse files
Merge branch '4.1'
* 4.1: Alpha-ordering for "use" statements
2 parents 9ddb443 + 30b324c commit 2021b24

16 files changed

+21
-21
lines changed

Collator/Collator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Intl\Collator;
1313

14-
use Symfony\Component\Intl\Exception\MethodNotImplementedException;
1514
use Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException;
15+
use Symfony\Component\Intl\Exception\MethodNotImplementedException;
1616
use Symfony\Component\Intl\Globals\IntlGlobals;
1717
use Symfony\Component\Intl\Locale\Locale;
1818

Data/Bundle/Reader/BundleEntryReader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111

1212
namespace Symfony\Component\Intl\Data\Bundle\Reader;
1313

14+
use Symfony\Component\Intl\Data\Util\RecursiveArrayAccess;
1415
use Symfony\Component\Intl\Exception\MissingResourceException;
1516
use Symfony\Component\Intl\Exception\OutOfBoundsException;
1617
use Symfony\Component\Intl\Exception\ResourceBundleNotFoundException;
1718
use Symfony\Component\Intl\Locale;
18-
use Symfony\Component\Intl\Data\Util\RecursiveArrayAccess;
1919

2020
/**
2121
* Default implementation of {@link BundleEntryReaderInterface}.

Data/Bundle/Reader/IntlBundleReader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Intl\Data\Bundle\Reader;
1313

14-
use Symfony\Component\Intl\Exception\ResourceBundleNotFoundException;
1514
use Symfony\Component\Intl\Data\Util\ArrayAccessibleResourceBundle;
15+
use Symfony\Component\Intl\Exception\ResourceBundleNotFoundException;
1616

1717
/**
1818
* Reads binary .res resource bundles.

Data/Generator/AbstractDataGenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
namespace Symfony\Component\Intl\Data\Generator;
1313

1414
use Symfony\Component\Filesystem\Filesystem;
15-
use Symfony\Component\Intl\Data\Bundle\Reader\BundleReaderInterface;
16-
use Symfony\Component\Intl\Data\Util\LocaleScanner;
1715
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
16+
use Symfony\Component\Intl\Data\Bundle\Reader\BundleReaderInterface;
1817
use Symfony\Component\Intl\Data\Bundle\Reader\IntlBundleReader;
18+
use Symfony\Component\Intl\Data\Util\LocaleScanner;
1919

2020
/**
2121
* The rule for compiling the currency bundle.

Data/Generator/CurrencyDataGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
namespace Symfony\Component\Intl\Data\Generator;
1313

14+
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
1415
use Symfony\Component\Intl\Data\Bundle\Reader\BundleReaderInterface;
1516
use Symfony\Component\Intl\Data\Util\ArrayAccessibleResourceBundle;
16-
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
1717
use Symfony\Component\Intl\Data\Util\LocaleScanner;
1818

1919
/**

Data/Generator/LanguageDataGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111

1212
namespace Symfony\Component\Intl\Data\Generator;
1313

14+
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
1415
use Symfony\Component\Intl\Data\Bundle\Reader\BundleReaderInterface;
1516
use Symfony\Component\Intl\Data\Util\ArrayAccessibleResourceBundle;
1617
use Symfony\Component\Intl\Data\Util\LocaleScanner;
1718
use Symfony\Component\Intl\Exception\RuntimeException;
18-
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
1919

2020
/**
2121
* The rule for compiling the language bundle.

Data/Generator/RegionDataGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
namespace Symfony\Component\Intl\Data\Generator;
1313

14+
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
1415
use Symfony\Component\Intl\Data\Bundle\Reader\BundleReaderInterface;
1516
use Symfony\Component\Intl\Data\Util\ArrayAccessibleResourceBundle;
16-
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
1717
use Symfony\Component\Intl\Data\Util\LocaleScanner;
1818

1919
/**

Data/Generator/ScriptDataGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Intl\Data\Generator;
1313

14-
use Symfony\Component\Intl\Data\Bundle\Reader\BundleReaderInterface;
1514
use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler;
15+
use Symfony\Component\Intl\Data\Bundle\Reader\BundleReaderInterface;
1616
use Symfony\Component\Intl\Data\Util\LocaleScanner;
1717

1818
/**

Data/Provider/CurrencyDataProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
namespace Symfony\Component\Intl\Data\Provider;
1313

14+
use Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReaderInterface;
1415
use Symfony\Component\Intl\Exception\MissingResourceException;
1516
use Symfony\Component\Intl\Locale;
16-
use Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReaderInterface;
1717

1818
/**
1919
* Data provider for currency-related data.

Data/Provider/LanguageDataProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Intl\Data\Provider;
1313

14-
use Symfony\Component\Intl\Locale;
1514
use Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReaderInterface;
15+
use Symfony\Component\Intl\Locale;
1616

1717
/**
1818
* Data provider for language-related ICU data.

0 commit comments

Comments
 (0)