Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
43 | public function run() |
||
44 | { |
||
45 | if (!empty($this->image)) { |
||
46 | throw new NotSupportedException('logo image is not implemented yet'); |
||
47 | } |
||
48 | |||
49 | return $this->render('LogoLink', [ |
||
50 | 'image' => $this->image, |
||
51 | 'name' => $this->name, |
||
52 | 'url' => $this->url, |
||
53 | 'options' => $this->options, |
||
54 | ]); |
||
55 | } |
||
56 | } |
||
57 |