Skip to content

chore(deps-dev): update Pint to 1.11.x #480

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"illuminate/view": "^10.13.5",
"laminas/laminas-text": "^2.10",
"laravel-zero/phar-updater": "^1.3",
"laravel/pint": "^1.10.6",
"laravel/pint": "^1.11",
"nunomaduro/laravel-console-dusk": "^1.11",
"nunomaduro/laravel-console-menu": "^3.4",
"nunomaduro/termwind": "^1.15.1",
Expand Down
5 changes: 3 additions & 2 deletions src/Bootstrap/BaseLoadConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@

namespace LaravelZero\Framework\Bootstrap;

use function basename;
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
use Illuminate\Foundation\Bootstrap\LoadConfiguration;
use function ksort;
use Symfony\Component\Finder\Finder;

use function basename;
use function ksort;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Bootstrap/LoadEnvironmentVariables.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@

namespace LaravelZero\Framework\Bootstrap;

use function class_exists;
use Dotenv\Dotenv;
use Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables as BaseLoadEnvironmentVariables;
use LaravelZero\Framework\Application;
use LaravelZero\Framework\Contracts\BoostrapperContract;

use function class_exists;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Bootstrap/RegisterProviders.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

namespace LaravelZero\Framework\Bootstrap;

use function collect;
use Illuminate\Foundation\Bootstrap\RegisterProviders as BaseRegisterProviders;
use LaravelZero\Framework\Application;
use LaravelZero\Framework\Components;
Expand All @@ -26,6 +25,8 @@
use NunoMaduro\LaravelConsoleTask\LaravelConsoleTaskServiceProvider;
use NunoMaduro\LaravelDesktopNotifier\LaravelDesktopNotifierServiceProvider;

use function collect;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Commands/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@

namespace LaravelZero\Framework\Commands;

use function func_get_args;
use Illuminate\Console\Command as BaseCommand;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Application;
use LaravelZero\Framework\Providers\CommandRecorder\CommandRecorderRepository;

use function func_get_args;
use function str_repeat;
use function strlen;

Expand Down
1 change: 1 addition & 0 deletions src/Commands/MakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
namespace LaravelZero\Framework\Commands;

use Illuminate\Foundation\Console\ConsoleMakeCommand;

use function ucfirst;

final class MakeCommand extends ConsoleMakeCommand
Expand Down
1 change: 1 addition & 0 deletions src/Commands/RenameCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

use Illuminate\Support\Facades\File;
use Illuminate\Support\Str;

use function sprintf;

final class RenameCommand extends Command
Expand Down
1 change: 1 addition & 0 deletions src/Commands/TestMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
namespace LaravelZero\Framework\Commands;

use Illuminate\Foundation\Console\TestMakeCommand as BaseTestMakeCommand;

use function ucfirst;

final class TestMakeCommand extends BaseTestMakeCommand
Expand Down
3 changes: 2 additions & 1 deletion src/Components/ConsoleDusk/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

namespace LaravelZero\Framework\Components\ConsoleDusk;

use function class_exists;
use LaravelZero\Framework\Components\AbstractComponentProvider;

use function class_exists;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Database/Migrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@

namespace LaravelZero\Framework\Components\Database;

use function collect;
use Illuminate\Database\Migrations\Migrator as BaseMigrator;
use Illuminate\Support\Str;
use SplFileInfo;
use Symfony\Component\Finder\Finder;

use function collect;

/**
* @codeCoverageIgnore
*
Expand Down
7 changes: 4 additions & 3 deletions src/Components/Database/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

namespace LaravelZero\Framework\Components\Database;

use function class_exists;
use function collect;
use Illuminate\Contracts\Config\Repository;
use Illuminate\Database\ConnectionResolverInterface;
use Illuminate\Database\Console\Factories\FactoryMakeCommand;
Expand All @@ -36,10 +34,13 @@
use Illuminate\Foundation\Console\ModelMakeCommand;
use Illuminate\Foundation\Providers\ComposerServiceProvider;
use Illuminate\Support\Facades\File;
use function is_array;
use LaravelZero\Framework\Components\AbstractComponentProvider;
use SplFileInfo;

use function class_exists;
use function collect;
use function is_array;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Log/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@

namespace LaravelZero\Framework\Components\Log;

use function class_exists;
use Illuminate\Contracts\Config\Repository;
use LaravelZero\Framework\Components\AbstractComponentProvider;

use function class_exists;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Logo/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@

namespace LaravelZero\Framework\Components\Logo;

use function class_exists;
use Illuminate\Console\Application as Artisan;
use LaravelZero\Framework\Components\AbstractComponentProvider;

use function class_exists;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Menu/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

namespace LaravelZero\Framework\Components\Menu;

use function class_exists;
use LaravelZero\Framework\Components\AbstractComponentProvider;

use function class_exists;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Pest/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@

namespace LaravelZero\Framework\Components\Pest;

use function class_exists;
use LaravelZero\Framework\Components\AbstractComponentProvider;
use Pest\Laravel\PestServiceProvider;

use function class_exists;

/** @internal */
final class Provider extends AbstractComponentProvider
{
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Queue/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@

namespace LaravelZero\Framework\Components\Queue;

use function class_exists;
use Illuminate\Contracts\Config\Repository;
use LaravelZero\Framework\Components\AbstractComponentProvider;

use function class_exists;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Redis/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@

namespace LaravelZero\Framework\Components\Redis;

use function class_exists;
use Illuminate\Redis\RedisServiceProvider;
use LaravelZero\Framework\Components\AbstractComponentProvider;

use function class_exists;

/** @internal */
final class Provider extends AbstractComponentProvider
{
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Updater/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@

namespace LaravelZero\Framework\Components\Updater;

use function class_exists;
use Humbug\SelfUpdate\Updater as PharUpdater;
use LaravelZero\Framework\Components\AbstractComponentProvider;
use LaravelZero\Framework\Components\Updater\Strategy\GithubStrategy;
use LaravelZero\Framework\Components\Updater\Strategy\StrategyInterface;
use LaravelZero\Framework\Providers\Build\Build;

use function class_exists;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Components/View/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

namespace LaravelZero\Framework\Components\View;

use function class_exists;
use LaravelZero\Framework\Components\AbstractComponentProvider;

use function class_exists;

/**
* @internal
*/
Expand Down
11 changes: 6 additions & 5 deletions src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,20 @@

namespace LaravelZero\Framework;

use function collect;
use function define;
use function defined;
use function get_class;
use Illuminate\Console\Application as Artisan;
use Illuminate\Foundation\Console\Kernel as BaseKernel;
use function in_array;
use LaravelZero\Framework\Providers\CommandRecorder\CommandRecorderRepository;
use NunoMaduro\Collision\Adapters\Laravel\Commands\TestCommand;
use ReflectionClass;
use Symfony\Component\Console\Exception\CommandNotFoundException;
use Symfony\Component\Console\Output\OutputInterface;

use function collect;
use function define;
use function defined;
use function get_class;
use function in_array;

class Kernel extends BaseKernel
{
/**
Expand Down
3 changes: 2 additions & 1 deletion src/ProviderRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

namespace LaravelZero\Framework;

use function array_merge;
use Illuminate\Foundation\ProviderRepository as BaseProviderRepository;

use function array_merge;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Providers/Build/Build.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

namespace LaravelZero\Framework\Providers\Build;

use function dirname;
use Phar;

use function dirname;

/**
* @internal
*/
Expand Down
3 changes: 2 additions & 1 deletion src/Providers/Composer/Composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@

namespace LaravelZero\Framework\Providers\Composer;

use function collect;
use Illuminate\Contracts\Foundation\Application;
use LaravelZero\Framework\Contracts\Providers\ComposerContract;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Process\Process;
use Throwable;

use function collect;

/**
* @codeCoverageIgnore
*
Expand Down