Passed
Push — main ( 611808...493269 )
by Daryl
02:40
created

ProductionSeason::response()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
3
namespace Clubdeuce\Tessitura\Resources;
4
5
use Clubdeuce\Tessitura\Base\Base;
6
use DateTime;
7
use DateTimeZone;
8
use Exception;
9
use InvalidArgumentException;
10
11
class ProductionSeason extends Base
12
{
13
    /**
14
     * @var string[]
15
     */
16
    protected array $_response = [];
17
18
    /**
19
     * @var Performance[]
20
     */
21
    protected array $_performances = [];
22
23
    /**
24
     * Get the response data for this production season.
25
     *
26
     * @return mixed[] The response data
27
     */
28 4
    public function response(): array
29
    {
30 4
        return $this->_response;
31
    }
32
33
    /**
34
     * @throws InvalidArgumentException
35
     */
36 4
    public function firstPerformanceDate(string $timezone = 'America/New_York'): DateTime|bool
37
    {
38
        try {
39 4
            $timezone = new DateTimeZone($timezone);
40 1
        } catch (Exception $e) {
41 1
            throw new InvalidArgumentException($e->getMessage());
42
        }
43
44 3
        $date = isset($this->response()['FirstPerformanceDate']) ? $this->response()['FirstPerformanceDate'] : false;
45 3
        if ($date) {
46
            try {
47 2
                return DateTime::createFromFormat(' Y-m-d\TG:i:sp', $date, $timezone);
48
            } catch (Exception $e) {
49
                trigger_error($e->getMessage(), E_USER_ERROR);
50
            }
51
        }
52
53 1
        return false;
54
    }
55
56
    /**
57
     * @throws InvalidArgumentException
58
     */
59 3
    public function lastPerformanceDate(string $timezone = 'America/New_York'): DateTime|bool
60
    {
61
        try {
62 3
            $timezone = new DateTimeZone($timezone);
63 1
        } catch (Exception $e) {
64 1
            throw new InvalidArgumentException($e->getMessage());
65
        }
66
67 2
        $date = isset($this->response()['LastPerformanceDate']) ? $this->response()['LastPerformanceDate'] : false;
68 2
        if ($date) {
69
            try {
70 1
                return DateTime::createFromFormat(' Y-m-d\TG:i:sp', $date, $timezone);
71
            } catch (Exception $e) {
72
                trigger_error($e->getMessage(), E_USER_ERROR);
73
            }
74
        }
75
76 1
        return false;
77
    }
78
79
    /**
80
     * @return Performance[]
81
     */
82 1
    public function performances(): array
83
    {
84 1
        return $this->_performances;
85
    }
86
}
87