diff --git a/lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php b/lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php index 58947a49a95..571f1623222 100644 --- a/lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php +++ b/lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php @@ -27,11 +27,11 @@ use function array_fill; use function call_user_func_array; use function count; -use function str_repeat; -use function is_resource; -use function get_resource_type; use function feof; use function fread; +use function get_resource_type; +use function is_resource; +use function str_repeat; /** * @author Kim Hemsø Rasmussen diff --git a/tests/Doctrine/Tests/DBAL/Functional/BlobTest.php b/tests/Doctrine/Tests/DBAL/Functional/BlobTest.php index 3d73fd121c8..85559aa99f9 100644 --- a/tests/Doctrine/Tests/DBAL/Functional/BlobTest.php +++ b/tests/Doctrine/Tests/DBAL/Functional/BlobTest.php @@ -6,8 +6,9 @@ use Doctrine\DBAL\Types\Type; use const CASE_LOWER; use function array_change_key_case; -use function stream_get_contents; use function fopen; +use function str_repeat; +use function stream_get_contents; /** * @group DBAL-6