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

BeforeCreateLocationEvent   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 56
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 56
rs 10
c 0
b 0
f 0
wmc 6
lcom 1
cbo 1

6 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getContentInfo() 0 4 1
A getLocationCreateStruct() 0 4 1
A getLocation() 0 4 1
A setLocation() 0 4 1
A hasLocation() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace eZ\Publish\Core\Event\Location;
6
7
use eZ\Publish\API\Repository\Values\Content\ContentInfo;
8
use eZ\Publish\API\Repository\Values\Content\Location;
9
use eZ\Publish\API\Repository\Values\Content\LocationCreateStruct;
10
use eZ\Publish\Core\Event\BeforeEvent;
11
12
final class BeforeCreateLocationEvent extends BeforeEvent
13
{
14
	public const NAME = 'ezplatform.event.location.create.before';
15
16
	/**
17
     * @var \eZ\Publish\API\Repository\Values\Content\ContentInfo
18
     */
19
	private $contentInfo;
20
21
	/**
22
     * @var \eZ\Publish\API\Repository\Values\Content\LocationCreateStruct
23
     */
24
	private $locationCreateStruct;
25
26
	/**
27
     * @var \eZ\Publish\API\Repository\Values\Content\Location|null
28
     */
29
	private $location;
30
31
32
	public function __construct(ContentInfo $contentInfo, LocationCreateStruct $locationCreateStruct)
33
	{
34
		$this->contentInfo = $contentInfo;
35
		$this->locationCreateStruct = $locationCreateStruct;
36
	}
37
38
39
	public function getContentInfo(): ContentInfo
40
	{
41
		return $this->contentInfo;
42
	}
43
44
45
	public function getLocationCreateStruct(): LocationCreateStruct
46
	{
47
		return $this->locationCreateStruct;
48
	}
49
50
51
	function getLocation(): ?Location
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...
52
	{
53
		return $this->location;
54
	}
55
56
57
	function setLocation(?Location $location): 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...
58
	{
59
		$this->location = $location;
60
	}
61
62
63
	function hasLocation(): 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...
64
	{
65
		return $this->location instanceof Location;
66
	}
67
}
68