Skip to content

Commit 7f7fcef

Browse files
committed
lint: misc
1 parent 06b5940 commit 7f7fcef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/src/config/environment_config.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ abstract final class EnvironmentConfig {
1515

1616
// The DotEnv instance is now loaded via a helper method to make it more
1717
// resilient to current working directory issues.
18-
static final _env = _loadEnv();
18+
static final DotEnv _env = _loadEnv();
1919

2020
/// Helper method to load the .env file more robustly.
2121
///

lib/src/registry/model_registry.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,4 +459,4 @@ typedef ModelRegistryMap = Map<String, ModelConfig<dynamic>>;
459459
/// This makes the `modelRegistry` map available for injection into the
460460
/// request context via `context.read<ModelRegistryMap>()`. It's primarily
461461
/// used by the middleware in `routes/api/v1/data/_middleware.dart`.
462-
final modelRegistryProvider = provider<ModelRegistryMap>((_) => modelRegistry);
462+
final Middleware modelRegistryProvider = provider<ModelRegistryMap>((_) => modelRegistry);

0 commit comments

Comments
 (0)