ProductCodeToPackage   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 12
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * The Imaging Source Download System PHP Wrapper
6
 *
7
 * PHP wrapper for The Imaging Source Download System Web API. Authored and supported by The Imaging Source Europe GmbH.
8
 *
9
 * @link      http://dl-gui.theimagingsource.com to learn more about The Imaging Source Download System
10
 * @link      https://github.com/jonathanmaron/theimagingsource-tisd-sdk for the canonical source repository
11
 * @license   https://github.com/jonathanmaron/theimagingsource-tisd-sdk/blob/master/LICENSE.md
12
 * @copyright © 2022 The Imaging Source Europe GmbH
13
 */
14
15
namespace Tisd\Sdk\Lut;
16
17
/**
18
 * Class ProductCodeToPackage
19
 *
20
 * @package Tisd\Sdk\Lut
21
 */
22
class ProductCodeToPackage extends AbstractLut
23
{
24
    /**
25
     * ProductCodeToPackage constructor
26
     *
27
     * @param array $options
28
     */
29 4
    public function __construct(array $options = [])
30
    {
31 4
        parent::__construct($options);
32
33 4
        $this->lut = $this->buildLut('product_code');
34
    }
35
}
36