1
0
Fork 0

Fix initial values of CompletePackage properties

pull/9975/head
Michael Telgmann 2021-06-17 08:46:40 +02:00
parent 9a32bf9709
commit 66fb240e1b
No known key found for this signature in database
GPG Key ID: 58B3260258E8D84B
1 changed files with 3 additions and 3 deletions

View File

@ -19,10 +19,10 @@ namespace Composer\Package;
*/
class CompletePackage extends Package implements CompletePackageInterface
{
protected $repositories;
protected $repositories = array();
protected $license = array();
protected $keywords;
protected $authors;
protected $keywords = array();
protected $authors = array();
protected $description;
protected $homepage;
protected $scripts = array();