Skip to content

Commit

Permalink
Update BaseUser.php
Browse files Browse the repository at this point in the history
  • Loading branch information
adrolli committed Jun 21, 2024
1 parent e8742a7 commit f0e40c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/Base/BaseUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Moox\Core\Base;

use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Foundation\Auth\User as Authenticatable;

if (config('core.use_advanced_tables') === true && trait_exists('\Archilex\AdvancedTables\AdvancedTables')) {
abstract class BaseUser extends Authenticatable
class BaseUser extends Authenticatable
{
use \Archilex\AdvancedTables\Concerns\HasViews;

Check failure on line 10 in packages/core/src/Base/BaseUser.php

View workflow job for this annotation

GitHub Actions / phpstan

Class Moox\Core\Base\BaseUser uses unknown trait Archilex\AdvancedTables\Concerns\HasViews.

Expand Down

0 comments on commit f0e40c6

Please sign in to comment.