Completed
Push — master ( 6d6774...64f3ed )
by Jeroen
11:23 queued 05:13
created

AdminList/BulkAction/SimpleBulkAction.php (2 issues)

Check that @param annotations have the correct type.

Documentation Informational

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\BulkAction;
4
5
/**
6
 * The simple bulk action is a default implementation of the bulk action interface, this can be used
7
 * in very simple use cases.
8
 */
9
class SimpleBulkAction implements BulkActionInterface
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 null|string
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
0 ignored issues
show
Should the type for parameter $icon not be string|null?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
35
     * @param string $template The template
0 ignored issues
show
Should the type for parameter $template not be string|null?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
36
     */
37 1 View Code Duplication
    public function __construct(array $url, $label, $icon = null, $template = null)
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