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

StringValueBinder   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 23
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
wmc 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A bindValue() 0 11 2
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