File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- use DragonCode \LaravelFeed \Transformers \BoolTransformer ;
6- use DragonCode \LaravelFeed \Transformers \DateTimeTransformer ;
7- use DragonCode \LaravelFeed \Transformers \EnumTransformer ;
5+ use DragonCode \LaravelFeed \Transformers ;
86
97/**
108 * Laravel Feeds configuration
106104 * supports the value will handle it.
107105 *
108106 * You may add your own transformers by implementing
109- * DragonCode\LaravelFeed\Contracts\Transformer and registering the class
107+ * ` DragonCode\LaravelFeed\Contracts\Transformer` and registering the class
110108 * here, or publish a stub via the package's make command if available.
111109 */
112110 'transformers ' => [
113- DateTimeTransformer ::class,
114- BoolTransformer ::class,
115- EnumTransformer::class,
111+ Transformers \BoolTransformer ::class,
112+ Transformers \DateTimeTransformer ::class,
113+ Transformers \ EnumTransformer::class,
116114 ],
117115];
You can’t perform that action at this time.
0 commit comments