Passed
Push — main ( 036728...6510e5 )
by Thierry
06:29
created

Distribution   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 8
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
namespace Siak\Tontine\Service\Meeting\Saving;
4
5
use Illuminate\Support\Collection;
6
7
class Distribution
8
{
9
    /**
10
     * @param Collection $savings
11
     * @param int $partValue
12
     */
13
    public function __construct(public Collection $savings, public int $partValue = 0)
14
    {}
15
}
16