Eof::getData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
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