mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-01 21:47:35 +00:00
Updater class tests
This commit is contained in:
17
tests/Supervisor.php
Normal file
17
tests/Supervisor.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace distinctm\LaravelDataSync\Tests;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Supervisor extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $guarded = [];
|
||||
|
||||
public function roles()
|
||||
{
|
||||
return $this->hasMany(Roles::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user