Skip to content

Commit 2115174

Browse files
Fix empty translation file causing array_replace_recursive() error
- Replace empty resources/lang/en/flowforge.php with proper PHP array structure - Prevents TypeError when Laravel Extra Intellisense or other tools load translation namespaces - Maintains backwards compatibility while fixing development tool compatibility Fixes issue where empty translation file returns null instead of array, causing array_replace_recursive() to fail in Laravel's translation loader.
1 parent 2228cdc commit 2115174

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

resources/lang/en/flowforge.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
return [
4+
// Flowforge translation keys will be added here as needed
5+
];

0 commit comments

Comments
 (0)