Passed
Pull Request — master (#81)
by
unknown
03:58
created

CreateNewWishlist::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 1
b 0
f 0
nc 1
nop 3
dl 0
loc 5
rs 10
1
<?php
2
3
/*
4
 * This file was created by developers working at BitBag
5
 * Do you need more information about us and what we do? Visit our https://bitbag.io website!
6
 * We are hiring developers from all over the world. Join us and start your new, exciting adventure and become part of us: https://bitbag.io/career
7
*/
8
9
declare(strict_types=1);
10
11
namespace BitBag\SyliusWishlistPlugin\Command\Wishlist;
12
13
use BitBag\SyliusWishlistPlugin\Factory\WishlistFactoryInterface;
14
use Symfony\Component\Form\FormFactoryInterface;
15
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
16
17
final class CreateNewWishlist
18
{
19
    private TokenStorageInterface $tokenStorage;
20
21
    private WishlistFactoryInterface $wishlistFactory;
22
23
    private FormFactoryInterface $formFactory;
24
25
    public function __construct(TokenStorageInterface $tokenStorage, WishlistFactoryInterface $wishlistFactory, FormFactoryInterface $formFactory)
26
    {
27
        $this->tokenStorage = $tokenStorage;
28
        $this->wishlistFactory = $wishlistFactory;
29
        $this->formFactory = $formFactory;
30
    }
31
32
    public function getTokenStorage(): TokenStorageInterface
33
    {
34
        return $this->tokenStorage;
35
    }
36
37
    public function getWishlistFactory(): WishlistFactoryInterface
38
    {
39
        return $this->wishlistFactory;
40
    }
41
42
    public function getFormFactory(): FormFactoryInterface
43
    {
44
        return $this->formFactory;
45
    }
46
}