Conditions | 4 |
Paths | 3 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
85 | public function getSite() |
||
86 | { |
||
87 | if ($this->site === null) { |
||
88 | $site = $this->resolveSite(); |
||
89 | $this->setSite($site); |
||
90 | return $site; |
||
91 | } |
||
92 | |||
93 | $siteId = $this->siteId; |
||
94 | if ($siteId !== null && |
||
95 | $siteId !== $this->site->id |
||
96 | ) { |
||
97 | $this->site = null; |
||
98 | return $this->getSite(); |
||
99 | } |
||
100 | |||
101 | return $this->site; |
||
102 | } |
||
103 | |||
128 |