We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4d9ea commit 7b705a8Copy full SHA for 7b705a8
phpstan.neon.dist
@@ -5,7 +5,6 @@ parameters:
5
level: 5
6
paths:
7
- src
8
- - database
9
tmpDir: build/phpstan
10
checkOctaneCompatibility: true
11
checkModelProperties: true
src/Builder/CsvBuilder.php
@@ -29,8 +29,6 @@ public function build(): string
29
$value = $this->data[$column] ?? '';
30
if (is_array($value)) {
31
$csvRow[] = "'".json_encode($value, JSON_UNESCAPED_UNICODE)."'";
32
- } elseif (is_null($value)) {
33
- $csvRow[] = 'NULL';
34
} elseif (is_numeric($value)) {
35
$csvRow[] = $value;
36
} elseif (is_bool($value)) {
0 commit comments