Completed
Push — ezp-30616 ( ab7e14...128c78 )
by
unknown
17:09
created

BeforeDeleteContentEvent   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 44
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 44
rs 10
c 0
b 0
f 0
wmc 5
lcom 1
cbo 1

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getContentInfo() 0 4 1
A getLocations() 0 4 1
A setLocations() 0 4 1
A hasLocations() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace eZ\Publish\Core\Event\Content;
6
7
use eZ\Publish\API\Repository\Values\Content\ContentInfo;
8
use eZ\Publish\Core\Event\BeforeEvent;
9
10
final class BeforeDeleteContentEvent extends BeforeEvent
11
{
12
	public const NAME = 'ezplatform.event.content.delete.before';
13
14
	/**
15
     * @var \eZ\Publish\API\Repository\Values\Content\ContentInfo
16
     */
17
	private $contentInfo;
18
19
	/**
20
     * @var array|null
21
     */
22
	private $locations;
23
24
25
	public function __construct(ContentInfo $contentInfo)
26
	{
27
		$this->contentInfo = $contentInfo;
28
	}
29
30
31
	public function getContentInfo(): ContentInfo
32
	{
33
		return $this->contentInfo;
34
	}
35
36
37
	function getLocations(): ?array
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
38
	{
39
		return $this->locations;
40
	}
41
42
43
	function setLocations(?array $locations): void
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
44
	{
45
		$this->locations = $locations;
46
	}
47
48
49
	function hasLocations(): bool
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
50
	{
51
		return is_array($this->locations);
52
	}
53
}
54