Completed
Push — master ( 37d8a4...53723a )
by Philip
02:07
created

AbstractCRC32::calculate()   B

Complexity

Conditions 4
Paths 6

Size

Total Lines 23
Code Lines 12

Duplication

Lines 23
Ratio 100 %

Importance

Changes 0
Metric Value
dl 23
loc 23
rs 8.7972
c 0
b 0
f 0
cc 4
eloc 12
nc 6
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PBurggraf\CRC\CRC32;
6
7
use PBurggraf\CRC\AbstractCRC;
8
9
/**
10
 * @author Philip Burggraf <[email protected]>
11
 */
12
abstract class AbstractCRC32 extends AbstractCRC
13
{
14
    protected $bitLength = 32;
15
}
16