Skip to content

Commit b08df22

Browse files
authored
fix: added underscore to filename to avoid spelling warnings (#837)
1 parent 53d4b11 commit b08df22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/scaffold/datatable.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ class $MODEL_NAME$DataTable extends DataTable
7676
*/
7777
protected function filename()
7878
{
79-
return '$MODEL_NAME_PLURAL_SNAKE$datatable_' . time();
79+
return '$MODEL_NAME_PLURAL_SNAKE_$datatable_' . time();
8080
}
8181
}

templates/scaffold/datatable_locale.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ class $MODEL_NAME$DataTable extends DataTable
100100
*/
101101
protected function filename()
102102
{
103-
return '$MODEL_NAME_PLURAL_SNAKE$datatable_' . time();
103+
return '$MODEL_NAME_PLURAL_SNAKE_$datatable_' . time();
104104
}
105105
}

0 commit comments

Comments
 (0)