Completed
Push — master ( 0abfbf...a9a357 )
by Tim
02:14
created

DetermineSearchEvent::getVariables()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace HDNET\Calendarize\Event;
4
5
final class DetermineSearchEvent
6
{
7
    private $variables = [];
8
9
    private $settings = [];
10
11
    public function __construct(array $variables, array $settings)
12
    {
13
        $this->variables = $variables;
14
        $this->settings = $settings;
15
    }
16
17
    public function getVariables(): array
18
    {
19
        return $this->variables;
20
    }
21
22
    public function getSettings(): array
23
    {
24
        return $this->settings;
25
    }
26
27
    public function setVariables(array $variables): void
28
    {
29
        $this->variables = $variables;
30
    }
31
}
32