File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
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 ' => [
113111 DateTimeTransformer::class,
114112 BoolTransformer::class,
115113 EnumTransformer::class,
114+ Transformers \BoolTransformer::class,
115+ Transformers \DateTimeTransformer::class,
116+ Transformers \EnumTransformer::class,
116117 ],
117118];
You can’t perform that action at this time.
0 commit comments