Skip to content

Commit 0bd2e90

Browse files
authored
Merge branch 'master' into feature/protected-accessor
2 parents 7564f98 + 532ae5b commit 0bd2e90

File tree

13 files changed

+158
-438
lines changed

13 files changed

+158
-438
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@
55
/.gitattributes export-ignore
66
/.github export-ignore
77
/.gitignore export-ignore
8+
/.editorconfig export-ignore
89
/phpunit.xml.dist export-ignore
910
/tests export-ignore
11+
/.php_cs.common.php export-ignore
12+
/.php_cs.dist export-ignore
13+
/.php_cs.tests.php export-ignore
14+
/psalm.xml export-ignore
15+
/psalm-baseline.xml export-ignore

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ All notable changes to this project will be documented in this file.
99
- Add support for attribute accessors marked as protected. [#1339 / pindab0ter](https://github.com/barryvdh/laravel-ide-helper/pull/1339)
1010

1111
### Fixed
12+
- Fix return type of methods provided by `SoftDeletes` [#1345 / KentarouTakeda](https://github.com/barryvdh/laravel-ide-helper/pull/1345)
1213
- Handle PHP 8.1 deprecation warnings when passing `null` to `new \ReflectionClass` [#1351 / mfn](https://github.com/barryvdh/laravel-ide-helper/pull/1351)
14+
- Fix issue where \Eloquent is not included when using write_mixin [#1352 / Jefemy](https://github.com/barryvdh/laravel-ide-helper/pull/1352)
15+
- Fix model factory method arguments for Laravel >= 9 [#1361 / wimski](https://github.com/barryvdh/laravel-ide-helper/pull/1361)
1316

1417
2022-03-06, 2.12.3
1518
------------------

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"php": "^7.3 || ^8.0",
2424
"ext-json": "*",
2525
"barryvdh/reflection-docblock": "^2.0.6",
26-
"composer/pcre": "^1 || ^2 || ^3",
26+
"composer/class-map-generator": "^1.0",
2727
"doctrine/dbal": "^2.6 || ^3",
2828
"illuminate/console": "^8 || ^9",
2929
"illuminate/filesystem": "^8 || ^9",

0 commit comments

Comments
 (0)