Eof   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getData() 0 4 1
1
<?php
2
namespace Xls\Record;
3
4
class Eof extends AbstractRecord
5
{
6
    const NAME = 'EOF';
7
    const ID = 0x000A;
8
9
    /**
10
     * Generate EOF record to indicate the end of a BIFF stream
11
     * @return string
12
     */
13
    public function getData()
14
    {
15
        return $this->getFullRecord();
16
    }
17
}
18