29
29
* @property \Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastedProperty $casted_property_with_return_docblock
30
30
* @property \Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastedProperty $casted_property_with_return_docblock_fqn
31
31
* @property array $casted_property_with_return_primitive
32
- * @property array|null $casted_property_with_return_primitive_docblock
33
- * @property array|null $casted_property_with_return_nullable_primitive
32
+ * @property array $casted_property_with_return_primitive_docblock
33
+ * @property array $casted_property_with_return_nullable_primitive
34
+ * @property array|null $casted_property_with_return_nullable_primitive_and_nullable_column
34
35
* @property $casted_property_without_return
35
36
* @property \Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts\CastedProperty $casted_property_with_param
36
37
* @property SelfCastingCasterWithStaticDocblockReturn $casted_property_with_static_return_docblock
50
51
* @method static \Illuminate\Database\Eloquent\Builder|CustomCast whereCastedPropertyWithReturnDocblock($value)
51
52
* @method static \Illuminate\Database\Eloquent\Builder|CustomCast whereCastedPropertyWithReturnDocblockFqn($value)
52
53
* @method static \Illuminate\Database\Eloquent\Builder|CustomCast whereCastedPropertyWithReturnNullablePrimitive($value)
54
+ * @method static \Illuminate\Database\Eloquent\Builder|CustomCast whereCastedPropertyWithReturnNullablePrimitiveAndNullableColumn($value)
53
55
* @method static \Illuminate\Database\Eloquent\Builder|CustomCast whereCastedPropertyWithReturnPrimitive($value)
54
56
* @method static \Illuminate\Database\Eloquent\Builder|CustomCast whereCastedPropertyWithReturnPrimitiveDocblock($value)
55
57
* @method static \Illuminate\Database\Eloquent\Builder|CustomCast whereCastedPropertyWithReturnType($value)
@@ -70,6 +72,7 @@ class CustomCast extends Model
70
72
'casted_property_with_return_primitive ' => CustomCasterWithPrimitiveReturn::class,
71
73
'casted_property_with_return_primitive_docblock ' => CustomCasterWithPrimitiveDocblockReturn::class,
72
74
'casted_property_with_return_nullable_primitive ' => CustomCasterWithNullablePrimitiveReturn::class,
75
+ 'casted_property_with_return_nullable_primitive_and_nullable_column ' => CustomCasterWithNullablePrimitiveReturn::class,
73
76
'casted_property_without_return ' => CustomCasterWithoutReturnType::class,
74
77
'casted_property_with_param ' => CustomCasterWithParam::class . ':param ' ,
75
78
'casted_property_with_static_return_docblock ' => SelfCastingCasterWithStaticDocblockReturn::class,
0 commit comments