Skip to content

Commit 57607ee

Browse files
committed
Fix dart service filename casing
1 parent 95d3dd7 commit 57607ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SDK/Language/Dart.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ public function getFiles(): array
414414
],
415415
[
416416
'scope' => 'service',
417-
'destination' => '/lib/services/{{service.name | caseDash}}.dart',
417+
'destination' => '/lib/services/{{service.name | caseSnake}}.dart',
418418
'template' => 'dart/lib/services/service.dart.twig',
419419
],
420420
[
@@ -429,7 +429,7 @@ public function getFiles(): array
429429
],
430430
[
431431
'scope' => 'service',
432-
'destination' => '/test/services/{{service.name | caseDash}}_test.dart',
432+
'destination' => '/test/services/{{service.name | caseSnake}}_test.dart',
433433
'template' => 'dart/test/services/service_test.dart.twig',
434434
],
435435
[

0 commit comments

Comments
 (0)