mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-30 17:07:25 +08:00
9 lines
163 B
PHP
9 lines
163 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
expect()->extend('toBeSameModel', function (Model $model) {
|
|
return $this
|
|
->is($model)->toBeTrue();
|
|
});
|