Skip to content

Commit 227b0fb

Browse files
authored
Merge pull request #480 from owenvoke/feature/pint-1.11.x
chore(deps-dev): update Pint to 1.11.x
2 parents b775018 + 3050bf8 commit 227b0fb

23 files changed

+49
-27
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"illuminate/view": "^10.13.5",
6161
"laminas/laminas-text": "^2.10",
6262
"laravel-zero/phar-updater": "^1.3",
63-
"laravel/pint": "^1.10.6",
63+
"laravel/pint": "^1.11",
6464
"nunomaduro/laravel-console-dusk": "^1.11",
6565
"nunomaduro/laravel-console-menu": "^3.4",
6666
"nunomaduro/termwind": "^1.15.1",

src/Bootstrap/BaseLoadConfiguration.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313

1414
namespace LaravelZero\Framework\Bootstrap;
1515

16-
use function basename;
1716
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
1817
use Illuminate\Foundation\Bootstrap\LoadConfiguration;
19-
use function ksort;
2018
use Symfony\Component\Finder\Finder;
2119

20+
use function basename;
21+
use function ksort;
22+
2223
/**
2324
* @internal
2425
*/

src/Bootstrap/LoadEnvironmentVariables.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313

1414
namespace LaravelZero\Framework\Bootstrap;
1515

16-
use function class_exists;
1716
use Dotenv\Dotenv;
1817
use Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables as BaseLoadEnvironmentVariables;
1918
use LaravelZero\Framework\Application;
2019
use LaravelZero\Framework\Contracts\BoostrapperContract;
2120

21+
use function class_exists;
22+
2223
/**
2324
* @internal
2425
*/

src/Bootstrap/RegisterProviders.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace LaravelZero\Framework\Bootstrap;
1515

16-
use function collect;
1716
use Illuminate\Foundation\Bootstrap\RegisterProviders as BaseRegisterProviders;
1817
use LaravelZero\Framework\Application;
1918
use LaravelZero\Framework\Components;
@@ -26,6 +25,8 @@
2625
use NunoMaduro\LaravelConsoleTask\LaravelConsoleTaskServiceProvider;
2726
use NunoMaduro\LaravelDesktopNotifier\LaravelDesktopNotifierServiceProvider;
2827

28+
use function collect;
29+
2930
/**
3031
* @internal
3132
*/

src/Commands/Command.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@
1313

1414
namespace LaravelZero\Framework\Commands;
1515

16-
use function func_get_args;
1716
use Illuminate\Console\Command as BaseCommand;
1817
use Illuminate\Console\Scheduling\Schedule;
1918
use LaravelZero\Framework\Application;
2019
use LaravelZero\Framework\Providers\CommandRecorder\CommandRecorderRepository;
20+
21+
use function func_get_args;
2122
use function str_repeat;
2223
use function strlen;
2324

src/Commands/MakeCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
namespace LaravelZero\Framework\Commands;
1515

1616
use Illuminate\Foundation\Console\ConsoleMakeCommand;
17+
1718
use function ucfirst;
1819

1920
final class MakeCommand extends ConsoleMakeCommand

src/Commands/RenameCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
use Illuminate\Support\Facades\File;
1717
use Illuminate\Support\Str;
18+
1819
use function sprintf;
1920

2021
final class RenameCommand extends Command

src/Commands/TestMakeCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
namespace LaravelZero\Framework\Commands;
1515

1616
use Illuminate\Foundation\Console\TestMakeCommand as BaseTestMakeCommand;
17+
1718
use function ucfirst;
1819

1920
final class TestMakeCommand extends BaseTestMakeCommand

src/Components/ConsoleDusk/Provider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313

1414
namespace LaravelZero\Framework\Components\ConsoleDusk;
1515

16-
use function class_exists;
1716
use LaravelZero\Framework\Components\AbstractComponentProvider;
1817

18+
use function class_exists;
19+
1920
/**
2021
* @internal
2122
*/

src/Components/Database/Migrator.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313

1414
namespace LaravelZero\Framework\Components\Database;
1515

16-
use function collect;
1716
use Illuminate\Database\Migrations\Migrator as BaseMigrator;
1817
use Illuminate\Support\Str;
1918
use SplFileInfo;
2019
use Symfony\Component\Finder\Finder;
2120

21+
use function collect;
22+
2223
/**
2324
* @codeCoverageIgnore
2425
*

0 commit comments

Comments
 (0)