From ae5b18681c9034b0288eaa7997c4e135a2149f1d Mon Sep 17 00:00:00 2001 From: Tyler Date: Fri, 13 Dec 2024 14:49:45 -0600 Subject: [PATCH] - Remove feature that's no longer supported due to dynamic property deprecation --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index 2f566f8..564f9c4 100644 --- a/README.md +++ b/README.md @@ -229,13 +229,6 @@ User::query()->joinRelation('posts as articles.comments as threads', [ }); ``` -The join type can also be mixed: -```php -User::query()->joinRelation('posts.comments', [ - 'comments' => function ($join) { $join->type = 'left'; } -}); -``` - #### Through-Syntax