Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-03-25 23:53:04 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-03-25 23:53:04 +0300
commit23eb0462e56d72ed24b7b02483069844bd2919b8 (patch)
tree0d1917534ef451fa259eb89ddabdf9449e83d7c3 /tests/lib/Mail
parent3cf321fdfc4235a87015a9af2f59c63220016c65 (diff)
Use lowercase true, false and null constants
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/Mail')
-rw-r--r--tests/lib/Mail/MessageTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Mail/MessageTest.php b/tests/lib/Mail/MessageTest.php
index ab62cfcfdcb..4d61504cd97 100644
--- a/tests/lib/Mail/MessageTest.php
+++ b/tests/lib/Mail/MessageTest.php
@@ -36,7 +36,7 @@ class MessageTest extends TestCase {
*/
public function getMailAddressProvider() {
return array(
- array(NULL, array()),
+ array(null, array()),
array(array('lukas@owncloud.com' => 'Lukas Reschke'), array('lukas@owncloud.com' => 'Lukas Reschke')),
);
}