| Conditions | 3 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function find($identifier) |
||
| 36 | { |
||
| 37 | $site = $this->resolveSiteFromRequest(); |
||
| 38 | $organization = Organization::findOne([ |
||
| 39 | is_numeric($identifier) ? 'id' : 'slug' => $identifier, |
||
| 40 | 'siteId' => $site ? $site->id : null |
||
| 41 | ]); |
||
| 42 | |||
| 43 | $organization->setScenario(Organization::SCENARIO_LIVE); |
||
| 44 | |||
| 45 | return $organization; |
||
| 46 | } |
||
| 47 | |||
| 62 |