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

CreateNewWishlist   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
c 1
b 0
f 0
dl 0
loc 28
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getTokenStorage() 0 3 1
A __construct() 0 5 1
A getWishlistFactory() 0 3 1
A getFormFactory() 0 3 1
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
}