Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TemplateTopLeft
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace Qmp\Laravel\Adserving\Services\Drawer\Templates;
4
5class TemplateTopLeft extends AbstractTemplate
6{
7    protected $fontWeight = [
8        'line-1' => 800,
9    ];
10
11    protected $fontSize = [
12        'line-1' => 22
13    ];
14
15    protected $kerning = [
16        'line-1' => 2
17    ];
18
19    protected $spacing = [
20        'line-2' => 8
21    ];
22
23    protected $fontColor = [
24        'line-1' => 'color-2'
25    ];
26}