Skip to content

Commit 393b453

Browse files
committed
update: laravel pint dev dependency
The latest version adds stdin support for use in IDEs that integrate with formatters if the formatter accepts input on stdin and outputs on stdout. Zed is one example of such an IDE.
1 parent 9618870 commit 393b453

File tree

6 files changed

+34
-36
lines changed

6 files changed

+34
-36
lines changed

app/Helpers/Bbcode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Bbcode
2828
* closeBbcode: string,
2929
* openHtml: string,
3030
* closeHtml: string,
31-
* block: boolean
31+
* block: bool
3232
* }
3333
* > $parsers.
3434
*/

app/Services/Tmdb/Client/Collection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Collection
3131
* parts: ?array<
3232
* int<0, max>,
3333
* array{
34-
* adult: ?boolean,
34+
* adult: ?bool,
3535
* backdrop_path: ?string,
3636
* id: ?int,
3737
* title: ?string,
@@ -43,7 +43,7 @@ class Collection
4343
* genre_ids: array<int>,
4444
* popularity: ?float,
4545
* release_date: ?string,
46-
* video: ?boolean,
46+
* video: ?bool,
4747
* vote_average: ?float,
4848
* vote_count: ?int,
4949
* },

app/Services/Tmdb/Client/Person.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Person
2323
{
2424
/**
2525
* @var array{
26-
* adult: ?boolean,
26+
* adult: ?bool,
2727
* also_known_as: ?array<string>,
2828
* biography: ?string,
2929
* birthday: ?string,

app/Services/Unit3dAnnounce.php

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ class Unit3dAnnounce
3232
{
3333
/**
3434
* @return bool|array{}|array{
35-
* created_at: double,
36-
* last_request_at: double,
37-
* last_announce_response_at: double,
38-
* requests_per_1s: double,
39-
* requests_per_10s: double,
40-
* requests_per_60s: double,
41-
* requests_per_900s: double,
42-
* requests_per_7200s: double,
43-
* announce_responses_per_1s: double,
44-
* announce_responses_per_10s: double,
45-
* announce_responses_per_60s: double,
46-
* announce_responses_per_900s: double,
47-
* announce_responses_per_7200s: double,
48-
* announce_responses_per_second: double,
35+
* created_at: float,
36+
* last_request_at: float,
37+
* last_announce_response_at: float,
38+
* requests_per_1s: float,
39+
* requests_per_10s: float,
40+
* requests_per_60s: float,
41+
* requests_per_900s: float,
42+
* requests_per_7200s: float,
43+
* announce_responses_per_1s: float,
44+
* announce_responses_per_10s: float,
45+
* announce_responses_per_60s: float,
46+
* announce_responses_per_900s: float,
47+
* announce_responses_per_7200s: float,
48+
* announce_responses_per_second: float,
4949
* }
5050
*/
5151
public static function getStats(): bool|array
@@ -225,15 +225,15 @@ public static function removeUser(User $user): bool
225225
* count: int,
226226
* max_count: int,
227227
* window: int,
228-
* updated_at: double,
228+
* updated_at: float,
229229
* }
230230
* },
231231
* receive_leech_list_rates: array{
232232
* rates: array{
233233
* count: int,
234234
* max_count: int,
235235
* window: int,
236-
* updated_at: double,
236+
* updated_at: float,
237237
* }
238238
* },
239239
* }

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"calebdw/larastan-livewire": "^2.3.0",
5050
"fakerphp/faker": "^1.24.1",
5151
"jasonmccreary/laravel-test-assertions": "^2.8.0",
52-
"laravel/pint": "v1.24.0",
52+
"laravel/pint": "^1.26.0",
5353
"laravel/sail": "^1.45.0",
5454
"mockery/mockery": "^1.6.12",
5555
"nunomaduro/collision": "^8.8.2",

composer.lock

Lines changed: 13 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)