Compare commits

...
Author SHA1 Message Date
laravel-ide-helper c341fb72d1 composer fix-style 2024-02-07 20:37:33 +00:00
Barry vd. Heuvel b441594c80 Update CHANGELOG.md 2024-02-07 21:37:02 +01:00
4 changed files with 14 additions and 13 deletions
+1 -1
View File
@@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
### Added
- Add support for enum default arguments using enum cases. [#1464 / d8vjork](https://github.com/barryvdh/laravel-ide-helper/pull/1464)
- Add support for real-time facades in the helper file. [#1455 / filipac](https://github.com/barryvdh/laravel-ide-helper/pull/1455)
2024-02-05, 2.14.0
------------------
@@ -26,7 +27,6 @@ All notable changes to this project will be documented in this file.
### Added
- Add support for nikic/php-parser 5 (next to 4) [#1502 / mfn](https://github.com/barryvdh/laravel-ide-helper/pull/1502)
- Add support for `immutable_date:*` and `immutable_datetime:*` casts. [#1380 / thekonz](https://github.com/barryvdh/laravel-ide-helper/pull/1380)
- Add support for real-time facades in the helper file. [pending PR](#)
2023-02-04, 2.13.0
------------------
+3 -2
View File
@@ -195,10 +195,11 @@ class Generator
return $facades;
}
protected function getFullyQualifiedClassNameInFile(string $path) {
protected function getFullyQualifiedClassNameInFile(string $path)
{
$contents = file_get_contents($path);
$parsers = new Php7(new Emulative);
$parsers = new Php7(new Emulative());
$parsed = collect($parsers->parse($contents) ?: []);
@@ -4,9 +4,9 @@ declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults\Enums\PostStatus;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{