Completed
Push — master ( ae5e03...0447ee )
by Jeroen
10:35 queued 04:37
created

AdminList/ListAction/SimpleListAction.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\AdminListBundle\AdminList\ListAction;
4
5
/**
6
 * The simple list action is a default implementation of the list action interface, this can be used
7
 * in very simple use cases.
8
 */
9
class SimpleListAction implements ListActionInterface
10
{
11
    /**
12
     * @var array
13
     */
14
    private $url;
15
16
    /**
17
     * @var string
18
     */
19
    private $icon;
20
21
    /**
22
     * @var string
23
     */
24
    private $label;
25
26
    /**
27
     * @var string|null
28
     */
29
    private $template;
30
31
    /**
32
     * @param array  $url      The url path and parameters
33
     * @param string $label    The label
34
     * @param string $icon     The icon
35
     * @param string $template The template
36
     */
37 1 View Code Duplication
    public function __construct(array $url, $label, $icon = null, $template = null)
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
38
    {
39 1
        $this->url = $url;
40 1
        $this->icon = $icon;
41 1
        $this->label = $label;
42 1
        $this->template = $template;
43 1
    }
44
45
    /**
46
     * @return array
47
     */
48 1
    public function getUrl()
49
    {
50 1
        return $this->url;
51
    }
52
53
    /**
54
     * @return string
55
     */
56 1
    public function getIcon()
57
    {
58 1
        return $this->icon;
59
    }
60
61
    /**
62
     * @return string
63
     */
64 1
    public function getLabel()
65
    {
66 1
        return $this->label;
67
    }
68
69
    /**
70
     * @return string
71
     */
72 1
    public function getTemplate()
73
    {
74 1
        return $this->template;
75
    }
76
}
77