Passed
Push — master ( 58a517...c9dc1e )
by Mark
27:18 queued 08:13
created

StringValueBinder::bindValue()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 4
nc 2
nop 2
dl 0
loc 11
ccs 5
cts 5
cp 1
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace PhpOffice\PhpSpreadsheet\Cell;
4
5
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
6
7
class StringValueBinder implements IValueBinder
8
{
9
    /**
10
     * Bind value to a cell.
11
     *
12
     * @param Cell $cell Cell to bind value to
13
     * @param mixed $value Value to bind in cell
14
     *
15
     * @throws \PhpOffice\PhpSpreadsheet\Exception
16
     *
17
     * @return bool
18
     */
19 1
    public function bindValue(Cell $cell, $value)
20
    {
21
        // sanitize UTF-8 strings
22 1
        if (is_string($value)) {
23 1
            $value = StringHelper::sanitizeUTF8($value);
24
        }
25
26 1
        $cell->setValueExplicit((string) $value, DataType::TYPE_STRING);
27
28
        // Done!
29 1
        return true;
30
    }
31
}
32