mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 03:54:04 +00:00
Move classes to separate files
This commit is contained in:
parent
483630897e
commit
dc81b0ec20
4 changed files with 64 additions and 47 deletions
17
tests/Etc/Comment.php
Normal file
17
tests/Etc/Comment.php
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Stancl\Tenancy\Tests\Etc;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Comment extends Model
|
||||||
|
{
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
|
public $timestamps = false;
|
||||||
|
|
||||||
|
public function post()
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Post::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
25
tests/Etc/Post.php
Normal file
25
tests/Etc/Post.php
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Stancl\Tenancy\Tests\Etc;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Stancl\Tenancy\Database\Concerns\BelongsToTenant;
|
||||||
|
|
||||||
|
class Post extends Model
|
||||||
|
{
|
||||||
|
use BelongsToTenant;
|
||||||
|
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
|
public $timestamps = false;
|
||||||
|
|
||||||
|
public function comments()
|
||||||
|
{
|
||||||
|
return $this->hasMany(Comment::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function scoped_comments()
|
||||||
|
{
|
||||||
|
return $this->hasMany(Comment::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
17
tests/Etc/ScopedComment.php
Normal file
17
tests/Etc/ScopedComment.php
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Stancl\Tenancy\Tests\Etc;
|
||||||
|
|
||||||
|
use Stancl\Tenancy\Database\Concerns\BelongsToPrimaryModel;
|
||||||
|
|
||||||
|
class ScopedComment extends Comment
|
||||||
|
{
|
||||||
|
use BelongsToPrimaryModel;
|
||||||
|
|
||||||
|
protected $table = 'comments';
|
||||||
|
|
||||||
|
public function getRelationshipToPrimaryModel(): string
|
||||||
|
{
|
||||||
|
return 'post';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -2,15 +2,16 @@
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
use Stancl\Tenancy\Tests\Etc\Post;
|
||||||
|
use Stancl\Tenancy\Tests\Etc\Comment;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Database\QueryException;
|
use Illuminate\Database\QueryException;
|
||||||
use Illuminate\Database\Schema\Blueprint;
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
use Illuminate\Support\Facades\Schema;
|
|
||||||
use Illuminate\Support\Facades\Validator;
|
use Illuminate\Support\Facades\Validator;
|
||||||
use Stancl\Tenancy\Database\Concerns\BelongsToPrimaryModel;
|
use Stancl\Tenancy\Tests\Etc\ScopedComment;
|
||||||
use Stancl\Tenancy\Database\Concerns\BelongsToTenant;
|
|
||||||
use Stancl\Tenancy\Database\Concerns\HasScopedValidationRules;
|
|
||||||
use Stancl\Tenancy\Tests\Etc\Tenant as TestTenant;
|
use Stancl\Tenancy\Tests\Etc\Tenant as TestTenant;
|
||||||
|
use Stancl\Tenancy\Database\Concerns\HasScopedValidationRules;
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
Schema::create('posts', function (Blueprint $table) {
|
Schema::create('posts', function (Blueprint $table) {
|
||||||
|
|
@ -304,49 +305,6 @@ class Tenant extends TestTenant
|
||||||
use HasScopedValidationRules;
|
use HasScopedValidationRules;
|
||||||
}
|
}
|
||||||
|
|
||||||
class Post extends Model
|
|
||||||
{
|
|
||||||
use BelongsToTenant;
|
|
||||||
|
|
||||||
protected $guarded = [];
|
|
||||||
|
|
||||||
public $timestamps = false;
|
|
||||||
|
|
||||||
public function comments()
|
|
||||||
{
|
|
||||||
return $this->hasMany(Comment::class);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function scoped_comments()
|
|
||||||
{
|
|
||||||
return $this->hasMany(Comment::class);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Comment extends Model
|
|
||||||
{
|
|
||||||
protected $guarded = [];
|
|
||||||
|
|
||||||
public $timestamps = false;
|
|
||||||
|
|
||||||
public function post()
|
|
||||||
{
|
|
||||||
return $this->belongsTo(Post::class);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ScopedComment extends Comment
|
|
||||||
{
|
|
||||||
use BelongsToPrimaryModel;
|
|
||||||
|
|
||||||
protected $table = 'comments';
|
|
||||||
|
|
||||||
public function getRelationshipToPrimaryModel(): string
|
|
||||||
{
|
|
||||||
return 'post';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class GlobalResource extends Model
|
class GlobalResource extends Model
|
||||||
{
|
{
|
||||||
protected $guarded = [];
|
protected $guarded = [];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue