| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function show($slug) |
||
| 13 | { |
||
| 14 | $dealerMetaSeo = DealerMetaSeoQuery::create() |
||
| 15 | ->filterBySlug($slug) |
||
| 16 | ->findOne(); |
||
| 17 | |||
| 18 | if(null === $dealerMetaSeo){ |
||
| 19 | throw new NotFoundHttpException(); |
||
| 20 | } |
||
| 21 | |||
| 22 | return $this->render('dealer-front', ['dealer_id'=>$dealerMetaSeo->getDealerId()]); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |