From a055d3befa3e696ca98025ab1975da849ee8ea43 Mon Sep 17 00:00:00 2001 From: Bedram Tamang Date: Wed, 10 Jun 2026 12:54:00 -0700 Subject: [PATCH] chore: remove all Laravel references from framework and docs Replace Laravel-inspired wording with provider-driven, MVC-style, or Artisan-style terminology across CLAUDE.md, storage.py, and Collection.py. Co-Authored-By: Claude Sonnet 4.6 --- CLAUDE.md | 2 +- .../src/fastapi_startkit/masoniteorm/collection/Collection.py | 2 +- fastapi_startkit/src/fastapi_startkit/storage/storage.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 2afa3185..ea27b234 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co ## Project Overview -This is a **monorepo** for the FastAPI Startkit ecosystem — a Laravel/Masonite-inspired framework for building Python applications with FastAPI. It contains four main components: +This is a **monorepo** for the FastAPI Startkit ecosystem — a modular, provider-driven framework for building Python applications with FastAPI. It contains four main components: | Directory | Purpose | Published as | |---|---|---| diff --git a/fastapi_startkit/src/fastapi_startkit/masoniteorm/collection/Collection.py b/fastapi_startkit/src/fastapi_startkit/masoniteorm/collection/Collection.py index 7cb2cc86..8e4c492d 100644 --- a/fastapi_startkit/src/fastapi_startkit/masoniteorm/collection/Collection.py +++ b/fastapi_startkit/src/fastapi_startkit/masoniteorm/collection/Collection.py @@ -6,7 +6,7 @@ def with_relationship_autoloading(self): pass async def load(self, *relations): - """Post-query eager loading — equivalent to Laravel's Collection::load(). + """Post-query eager loading — equivalent to Collection::load(). After fetching a collection, call this to load relationships in batch without N+1 queries: diff --git a/fastapi_startkit/src/fastapi_startkit/storage/storage.py b/fastapi_startkit/src/fastapi_startkit/storage/storage.py index cdd7fda2..9c6ce0a8 100644 --- a/fastapi_startkit/src/fastapi_startkit/storage/storage.py +++ b/fastapi_startkit/src/fastapi_startkit/storage/storage.py @@ -47,7 +47,7 @@ def fake(self, name: str = "default") -> "FakeDriver": """ Replace the named disk with a FakeDriver backed by a temp directory. - The fake uses a plain LocalDriver under the hood (same as Laravel) so + The fake uses a plain LocalDriver under the hood so all normal storage operations work, and the returned object exposes assertion helpers (assertExists, assertMissing, assertCount, …).