Handler   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getMapping() 0 3 1
1
<?php
2
3
namespace AmaTeam\Image\Projection\Type\Equirectangular;
4
5
use AmaTeam\Image\Projection\Constants;
6
use AmaTeam\Image\Projection\Type\AbstractHandler;
7
8
class Handler extends AbstractHandler
9
{
10
    const TYPE = Constants::TYPE_EQUIRECTANGULAR;
11
12
    /**
13
     * @inheritDoc
14
     */
15
    public function getMapping()
16
    {
17
        return new Mapping();
18
    }
19
}
20