Skip to content

Commit 7b705a8

Browse files
committed
Fix code analysis
1 parent bc4d9ea commit 7b705a8

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

phpstan.neon.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ parameters:
55
level: 5
66
paths:
77
- src
8-
- database
98
tmpDir: build/phpstan
109
checkOctaneCompatibility: true
1110
checkModelProperties: true

src/Builder/CsvBuilder.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ public function build(): string
2929
$value = $this->data[$column] ?? '';
3030
if (is_array($value)) {
3131
$csvRow[] = "'".json_encode($value, JSON_UNESCAPED_UNICODE)."'";
32-
} elseif (is_null($value)) {
33-
$csvRow[] = 'NULL';
3432
} elseif (is_numeric($value)) {
3533
$csvRow[] = $value;
3634
} elseif (is_bool($value)) {

0 commit comments

Comments
 (0)