Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
LaravelUserDecoratorFactory
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
0.00% covered (danger)
0.00%
0 / 1
 create
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
1<?php
2
3namespace Apie\LaravelApie\Wrappers\Security;
4
5use Apie\Core\Entities\EntityInterface;
6use Apie\Core\Permissions\PermissionInterface;
7use Illuminate\Contracts\Auth\Authenticatable;
8
9class LaravelUserDecoratorFactory
10{
11    public function create(Authenticatable $user): LaravelUserDecorator|EntityInterface
12    {
13        if ($user instanceof EntityInterface) {
14            return $user;
15        }
16        if ($user instanceof PermissionInterface) {
17            return new LaravelUserWithPermissionDecorator($user);
18        }
19        return new LaravelUserDecorator($user);
20    }
21}