From 28efc0ca97e41e275a9e4d49ac304e8c06d86127 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 29 May 2023 09:55:59 +0200 Subject: [PATCH] Update model docblocks --- tests/Etc/Comment.php | 2 +- tests/Etc/Post.php | 2 +- tests/Etc/ScopedComment.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Etc/Comment.php b/tests/Etc/Comment.php index bdc95ffe..c4d9bd1e 100644 --- a/tests/Etc/Comment.php +++ b/tests/Etc/Comment.php @@ -6,7 +6,7 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; /** - * This model is not intended to be used with the single-database tenancy approach. + * This model is used with the multi-database tenancy approach. */ class Comment extends Model { diff --git a/tests/Etc/Post.php b/tests/Etc/Post.php index 365e216d..f4e1a9e3 100644 --- a/tests/Etc/Post.php +++ b/tests/Etc/Post.php @@ -7,7 +7,7 @@ use Illuminate\Database\Eloquent\Relations\HasMany; use Stancl\Tenancy\Database\Concerns\BelongsToTenant; /** - * This model is intended to be used with the single-database tenancy approach. + * This model is used with the single-database tenancy approach. */ class Post extends Model { diff --git a/tests/Etc/ScopedComment.php b/tests/Etc/ScopedComment.php index 6eca2d2a..67d5490b 100644 --- a/tests/Etc/ScopedComment.php +++ b/tests/Etc/ScopedComment.php @@ -5,7 +5,7 @@ namespace Stancl\Tenancy\Tests\Etc; use Stancl\Tenancy\Database\Concerns\BelongsToPrimaryModel; /** - * This model is intended to be used with the single-database tenancy approach. + * This model is used with the single-database tenancy approach. */ class ScopedComment extends Comment {