If there is no copyright notice print comment line

This commit is contained in:
Roeland Jago Douma 2016-08-15 14:51:09 +02:00
parent 08a71b176f
commit b5f61ba0e2
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
1 changed files with 6 additions and 1 deletions

View File

@ -154,7 +154,12 @@ With help from many libraries and frameworks including:
} else {
$license = str_replace('@AUTHORS@', $authors, $this->licenseText);
}
$license = str_replace('@COPYRIGHT@', $copyrightNotices, $license);
if ($copyrightNotices === '') {
$license = str_replace('@COPYRIGHT@', ' *', $license);
} else {
$license = str_replace('@COPYRIGHT@', $copyrightNotices, $license);
}
$source = $this->eatOldLicense($source);
$source = "<?php" . PHP_EOL . $license . PHP_EOL . $source;