Skip to content

Commit 297dda5

Browse files
committed
chore(deps-dev): update to Pint 1.13.7
1 parent c86f516 commit 297dda5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"illuminate/view": "^10.28",
6161
"laminas/laminas-text": "^2.10",
6262
"laravel-zero/phar-updater": "^1.4",
63-
"laravel/pint": "^1.13.3",
63+
"laravel/pint": "^1.13.7",
6464
"nunomaduro/laravel-console-dusk": "^1.11",
6565
"nunomaduro/laravel-console-menu": "^3.4",
6666
"nunomaduro/termwind": "^1.15.1",

src/Exceptions/ConsoleException.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ final class ConsoleException extends Exception implements ConsoleExceptionContra
4040
*/
4141
public function __construct(
4242
int $exitCode,
43-
string $message = null,
43+
?string $message = null,
4444
array $headers = [],
45-
Exception $previous = null,
45+
?Exception $previous = null,
4646
?int $code = 0
4747
) {
4848
$this->exitCode = $exitCode;

src/Providers/CommandRecorder/CommandRecorderRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ final class CommandRecorderRepository
2929
/**
3030
* CommandRecorderRepository constructor.
3131
*/
32-
public function __construct(Collection $storage = null)
32+
public function __construct(?Collection $storage = null)
3333
{
3434
$this->storage = $storage ?? collect();
3535
}

src/Providers/Composer/Composer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function createProject(string $skeleton, string $projectName, array $opti
7272
/**
7373
* Runs the provided command on the provided folder.
7474
*/
75-
private function run(string $cmd, string $cwd = null): bool
75+
private function run(string $cmd, ?string $cwd = null): bool
7676
{
7777
$process = Process::fromShellCommandline($cmd, $cwd);
7878

0 commit comments

Comments
 (0)