Replaced all FQ global function and constants by explicit imports

This commit is contained in:
Alejandro Celaya
2018-10-28 08:24:06 +01:00
parent e1222de05b
commit 77d810b735
70 changed files with 235 additions and 123 deletions

View File

@@ -5,6 +5,8 @@ namespace ShlinkioTest\Shlink\Core\Exception;
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\Core\Exception\DeleteShortUrlException;
use function array_map;
use function range;
class DeleteShortUrlExceptionTest extends TestCase
{
@@ -54,8 +56,8 @@ class DeleteShortUrlExceptionTest extends TestCase
public function provideThresholds(): array
{
return \array_map(function (int $number) {
return array_map(function (int $number) {
return [$number];
}, \range(5, 50, 5));
}, range(5, 50, 5));
}
}