File tree Expand file tree Collapse file tree 2 files changed +27
-21
lines changed Expand file tree Collapse file tree 2 files changed +27
-21
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "preset" : " laravel" ,
3+ "rules" : {
4+ "statement_indentation" : true
5+ }
6+ }
Original file line number Diff line number Diff line change 66
77class DefaultValue implements Modifier
88{
9- public function title (): string
10- {
11- return 'Default Value ' ;
12- }
9+ public function title (): string
10+ {
11+ return 'Default Value ' ;
12+ }
1313
14- public function description (): string
15- {
16- return " Set a default value for the field if the CSV column is empty or missing " ;
17- }
14+ public function description (): string
15+ {
16+ return ' Set a default value for the field if the CSV column is empty or missing ' ;
17+ }
1818
19- public function settings (): array
20- {
21- return [
22- 'string ' => [
23- 'type ' => 'string ' ,
24- 'title ' => 'Default Value ' ,
25- ],
26- ];
27- }
19+ public function settings (): array
20+ {
21+ return [
22+ 'string ' => [
23+ 'type ' => 'string ' ,
24+ 'title ' => 'Default Value ' ,
25+ ],
26+ ];
27+ }
2828
29- public function handle ($ value = null , array $ settings = []): string
30- {
31- return empty ($ value ) ? $ settings ['string ' ] : $ value ;
32- }
29+ public function handle ($ value = null , array $ settings = []): string
30+ {
31+ return empty ($ value ) ? $ settings ['string ' ] : $ value ;
32+ }
3333}
You can’t perform that action at this time.
0 commit comments