summaryrefslogtreecommitdiffstats
path: root/build/license.php
diff options
context:
space:
mode:
Diffstat (limited to 'build/license.php')
-rw-r--r--build/license.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/license.php b/build/license.php
index e736419e2ac..689d7e5e194 100644
--- a/build/license.php
+++ b/build/license.php
@@ -356,7 +356,7 @@ With help from many libraries and frameworks including:
if (strpos($entry, '> ') === false) {
$this->mailMap[$entry] = $entry;
} else {
- list($use, $actual) = explode('> ', $entry);
+ [$use, $actual] = explode('> ', $entry);
$this->mailMap[$actual] = $use . '>';
}
}