RecalcId   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 1
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getData() 0 6 1
1
<?php
2
namespace Xls\Record;
3
4
class RecalcId extends AbstractRecord
5
{
6
    const NAME = 'RECALCID';
7
    const ID = 0x01C1;
8
9
    /**
10
     *
11
     * @return string
12
     */
13
    public function getData()
14
    {
15
        $data = pack('VV', 0x000001C1, 0x00001E667);
16
17
        return $this->getFullRecord($data);
18
    }
19
}
20