diff options
author | ignace nyamagana butera <nyamsprod@gmail.com> | 2015-09-25 11:26:13 +0200 |
---|---|---|
committer | ignace nyamagana butera <nyamsprod@gmail.com> | 2015-09-25 11:42:48 +0200 |
commit | e81de221d38490459439d105bd4367ac024a1ee2 (patch) | |
tree | 8b2477a73be3c3b3cb888c1df12bdcafef53837d /test/Plugin/NullValidatorTest.php | |
parent | 640f57af7abb41d51673cd860041979623cee423 (diff) | |
download | csv-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.php | 2 |
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; } |