summaryrefslogtreecommitdiffstats
path: root/test/Plugin/NullValidatorTest.php
diff options
context:
space:
mode:
authorignace nyamagana butera <nyamsprod@gmail.com>2015-09-25 11:26:13 +0200
committerignace nyamagana butera <nyamsprod@gmail.com>2015-09-25 11:42:48 +0200
commite81de221d38490459439d105bd4367ac024a1ee2 (patch)
tree8b2477a73be3c3b3cb888c1df12bdcafef53837d /test/Plugin/NullValidatorTest.php
parent640f57af7abb41d51673cd860041979623cee423 (diff)
downloadcsv-e81de221d38490459439d105bd4367ac024a1ee2.zip
csv-e81de221d38490459439d105bd4367ac024a1ee2.tar.gz
csv-e81de221d38490459439d105bd4367ac024a1ee2.tar.bz2
Improve Package Testing tools
- The package uses PHP CS Fixer to validate the coding standard - Improve Travis settings - Improve Scrutinizer settings
Diffstat (limited to 'test/Plugin/NullValidatorTest.php')
-rw-r--r--test/Plugin/NullValidatorTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Plugin/NullValidatorTest.php b/test/Plugin/NullValidatorTest.php
index fd0336c..e9392ce 100644
--- a/test/Plugin/NullValidatorTest.php
+++ b/test/Plugin/NullValidatorTest.php
@@ -25,7 +25,7 @@ class NullValidatorTest extends PHPUnit_Framework_TestCase
{
$csv = new SplFileObject(dirname(__DIR__).'/foo.csv', 'w');
$csv->setCsvControl();
- $csv->fputcsv(["john", "doe", "john.doe@example.com"], ",", '"');
+ $csv->fputcsv(['john', 'doe', 'john.doe@example.com'], ',', '"');
$this->csv = null;
}