diff --git a/build/license.php b/build/license.php index bd3bce15a4..322ce2e5e4 100644 --- a/build/license.php +++ b/build/license.php @@ -131,7 +131,10 @@ EOD; $authors = explode(PHP_EOL, $out); $authors = array_filter($authors, function($author) { - return !in_array($author, ['', 'Not Committed Yet', 'Jenkins for ownCloud ']); + return !in_array($author, [ + '', + 'Not Committed Yet ', + 'Jenkins for ownCloud ']); }); $authors = array_map(function($author){ return " * @author $author";