Completed
Push — master ( 941f20...d554c9 )
by Klochok
13:46
created

LogoLink::collectData()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 1
eloc 5
nc 1
nop 0
1
<?php
2
3
namespace hiqdev\themes\obaju\widgets;
4
5
class LogoLink extends \hiqdev\thememanager\widgets\LogoLink
6
{
7
    public $smallImage;
8
9
    public $smallImageOptions = [];
10
11
    protected function collectData()
12
    {
13
        return array_merge([
14
            'smallImage' => $this->getAssetImage($this->smallImage),
15
            'smallImageOptions' => $this->smallImageOptions,
16
        ], parent::collectData());
17
    }
18
}
19