File   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Test Coverage

Coverage 66.67%

Importance

Changes 0
Metric Value
wmc 3
eloc 4
dl 0
loc 30
ccs 4
cts 6
cp 0.6667
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A append() 0 3 1
A init() 0 3 1
1
<?php
2
3
namespace PhpOffice\PhpSpreadsheet\Shared\OLE\PPS;
4
5
// vim: set expandtab tabstop=4 shiftwidth=4:
6
// +----------------------------------------------------------------------+
7
// | PHP Version 4                                                        |
8
// +----------------------------------------------------------------------+
9
// | Copyright (c) 1997-2002 The PHP Group                                |
10
// +----------------------------------------------------------------------+
11
// | This source file is subject to version 2.02 of the PHP license,      |
12
// | that is bundled with this package in the file LICENSE, and is        |
13
// | available at through the world-wide-web at                           |
14
// | http://www.php.net/license/2_02.txt.                                 |
15
// | If you did not receive a copy of the PHP license and are unable to   |
16
// | obtain it through the world-wide-web, please send a note to          |
17
// | [email protected] so we can mail you a copy immediately.               |
18
// +----------------------------------------------------------------------+
19
// | Author: Xavier Noguer <[email protected]>                              |
20
// | Based on OLE::Storage_Lite by Kawai, Takanori                        |
21
// +----------------------------------------------------------------------+
22
//
23
use PhpOffice\PhpSpreadsheet\Shared\OLE;
24
use PhpOffice\PhpSpreadsheet\Shared\OLE\PPS;
25
26
/**
27
 * Class for creating File PPS's for OLE containers.
28
 *
29
 * @author   Xavier Noguer <[email protected]>
30
 */
31
class File extends PPS
32
{
33
    /**
34
     * The constructor.
35
     *
36
     * @param string $name The name of the file (in Unicode)
37
     *
38
     * @see OLE::ascToUcs()
39
     */
40 120
    public function __construct(string $name)
41
    {
42 120
        parent::__construct(null, $name, OLE::OLE_PPS_TYPE_FILE, null, null, null, null, null, '', []);
43
    }
44
45
    /**
46
     * Initialization method. Has to be called right after OLE_PPS_File().
47
     */
48
    public function init(): bool
49
    {
50
        return true;
51
    }
52
53
    /**
54
     * Append data to PPS.
55
     *
56
     * @param string $data The data to append
57
     */
58 118
    public function append(string $data): void
59
    {
60 118
        $this->_data .= $data;
61
    }
62
}
63