Completed
Push — 1.x ( fd0140...2593ab )
by Akihito
15s
created

NullTransfer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
/**
5
 * This file is part of the BEAR.Sunday package.
6
 *
7
 * @license http://opensource.org/licenses/MIT MIT
8
 */
9
namespace BEAR\Sunday\Extension\Transfer;
10
11
use BEAR\Resource\ResourceObject;
12
13
final class NullTransfer implements TransferInterface
14
{
15
    /**
16
     * {@inheritdoc}
17
     */
18
    public function __invoke(ResourceObject $ro, array $server)
19
    {
20
    }
21
}
22