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 {