|
6 | 6 |
|
7 | 7 | use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastableReturnsAnonymousCaster;
|
8 | 8 | use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastableReturnsCustomCaster;
|
| 9 | +use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastableWithoutReturnType; |
9 | 10 | use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CustomCasterWithDocblockReturn;
|
10 | 11 | use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CustomCasterWithDocblockReturnFqn;
|
11 | 12 | use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CustomCasterWithNullablePrimitiveReturn;
|
|
38 | 39 | * @property SelfCastingCasterWithStaticDocblockReturn $casted_property_with_static_return_docblock_and_param
|
39 | 40 | * @property \Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastedProperty $casted_property_with_castable
|
40 | 41 | * @property \Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastedProperty $casted_property_with_anonymous_cast
|
| 42 | + * @property mixed $casted_property_without_return_type |
41 | 43 | * @property \Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastedProperty $cast_without_property
|
42 | 44 | * @method static \Illuminate\Database\Eloquent\Builder|CustomCast newModelQuery()
|
43 | 45 | * @method static \Illuminate\Database\Eloquent\Builder|CustomCast newQuery()
|
@@ -72,6 +74,7 @@ class CustomCast extends Model
|
72 | 74 | 'casted_property_with_this_return_docblock' => SelfCastingCasterWithThisDocblockReturn::class,
|
73 | 75 | 'casted_property_with_castable' => CastableReturnsCustomCaster::class,
|
74 | 76 | 'casted_property_with_anonymous_cast' => CastableReturnsAnonymousCaster::class,
|
| 77 | + 'casted_property_without_return_type' => CastableWithoutReturnType::class, |
75 | 78 | 'extended_casted_property_with_static_return_docblock' => ExtendedSelfCastingCasterWithStaticDocblockReturn::class,
|
76 | 79 | 'extended_casted_property_with_this_return_docblock' => ExtendedSelfCastingCasterWithThisDocblockReturn::class,
|
77 | 80 | 'casted_property_with_static_return_docblock_and_param' => SelfCastingCasterWithStaticDocblockReturn::class . ':param',
|
|
0 commit comments