This commit is contained in:
Simon Vieille 2017-03-12 15:23:41 +01:00
parent ae1176ce78
commit 2c25ffd751
2 changed files with 15 additions and 1 deletions

14
phpci.yml Normal file
View file

@ -0,0 +1,14 @@
build_settings:
verbose: false
prefer_symlink: false
setup:
composer:
action: "install"
test:
php_unit:
directory: "tests/"
args: "--configuration 'phpunit.xml'"
complete:

View file

@ -333,7 +333,7 @@ class Csv
$content = $this->endOfLine.$content; $content = $this->endOfLine.$content;
} }
file_put_contents($filename, $content, $flags, $context); file_put_contents($filename, $content, $flags);
} }
return $this->render; return $this->render;