StreamedTrait
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
c 0
b 0
f 0
lcom 0
cbo 2
dl 0
loc 5
ccs 0
cts 3
cp 0
1
<?php
2
3
namespace League\Flysystem\Adapter\Polyfill;
4
5
trait StreamedTrait
6
{
7
    use StreamedReadingTrait;
8
    use StreamedWritingTrait;
9
}
10