Issues (28)

src/Reactable/Models/Traits/Reactable.php (7 issues)

1
<?php
2
3
/*
4
 * This file is part of Laravel Love.
5
 *
6
 * (c) Anton Komarev <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Cog\Laravel\Love\Reactable\Models\Traits;
15
16
use Cog\Contracts\Love\Reactable\Exceptions\AlreadyRegisteredAsLoveReactant;
17
use Cog\Contracts\Love\Reactant\Facades\Reactant as ReactantFacadeInterface;
18
use Cog\Contracts\Love\Reactant\Models\Reactant as ReactantInterface;
19
use Cog\Laravel\Love\Reactable\Observers\ReactableObserver;
20
use Cog\Laravel\Love\Reactant\Facades\Reactant as ReactantFacade;
21
use Cog\Laravel\Love\Reactant\Models\NullReactant;
22
use Cog\Laravel\Love\Reactant\Models\Reactant;
23
use Illuminate\Database\Eloquent\Relations\BelongsTo;
24
25
/**
26
 * @mixin \Cog\Contracts\Love\Reactable\Models\Reactable
27
 */
28
trait Reactable
29
{
30
    protected static function bootReactable(): void
31
    {
32
        static::observe(ReactableObserver::class);
33
    }
34
35
    public function loveReactant(): BelongsTo
36
    {
37
        return $this->belongsTo(Reactant::class, 'love_reactant_id');
0 ignored issues
show
It seems like belongsTo() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

37
        return $this->/** @scrutinizer ignore-call */ belongsTo(Reactant::class, 'love_reactant_id');
Loading history...
38
    }
39
40
    public function getLoveReactant(): ReactantInterface
41
    {
42
        return $this->getAttribute('loveReactant') ?? new NullReactant($this);
0 ignored issues
show
It seems like getAttribute() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

42
        return $this->/** @scrutinizer ignore-call */ getAttribute('loveReactant') ?? new NullReactant($this);
Loading history...
$this of type Cog\Laravel\Love\Reactable\Models\Traits\Reactable is incompatible with the type Cog\Contracts\Love\Reactable\Models\Reactable expected by parameter $reactable of Cog\Laravel\Love\Reactan...Reactant::__construct(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

42
        return $this->getAttribute('loveReactant') ?? new NullReactant(/** @scrutinizer ignore-type */ $this);
Loading history...
43
    }
44
45
    public function viaLoveReactant(): ReactantFacadeInterface
46
    {
47
        return new ReactantFacade($this->getLoveReactant());
48
    }
49
50
    public function isRegisteredAsLoveReactant(): bool
51
    {
52
        return !$this->isNotRegisteredAsLoveReactant();
53
    }
54
55
    public function isNotRegisteredAsLoveReactant(): bool
56
    {
57
        return $this->getAttributeValue('love_reactant_id') === null;
0 ignored issues
show
It seems like getAttributeValue() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

57
        return $this->/** @scrutinizer ignore-call */ getAttributeValue('love_reactant_id') === null;
Loading history...
58
    }
59
60
    public function registerAsLoveReactant(): void
61
    {
62
        if ($this->isRegisteredAsLoveReactant()) {
63
            throw new AlreadyRegisteredAsLoveReactant();
64
        }
65
66
        /** @var \Cog\Contracts\Love\Reactant\Models\Reactant $reactant */
67
        $reactant = $this->loveReactant()->create([
68
            'type' => $this->getMorphClass(),
0 ignored issues
show
It seems like getMorphClass() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

68
            'type' => $this->/** @scrutinizer ignore-call */ getMorphClass(),
Loading history...
69
        ]);
70
71
        $this->setAttribute('love_reactant_id', $reactant->getId());
0 ignored issues
show
It seems like setAttribute() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

71
        $this->/** @scrutinizer ignore-call */ 
72
               setAttribute('love_reactant_id', $reactant->getId());
Loading history...
72
        $this->save();
0 ignored issues
show
It seems like save() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

72
        $this->/** @scrutinizer ignore-call */ 
73
               save();
Loading history...
73
    }
74
}
75