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

AbstractCRC24::generateTable()   B

Complexity

Conditions 4
Paths 4

Size

Total Lines 22
Code Lines 14

Duplication

Lines 22
Ratio 100 %

Importance

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