1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-11 01:22:54 +00:00

Merge pull request from mitelg/fix-annotation-complete-package-interface

Fix initial values of CompletePackage properties
This commit is contained in:
Jordi Boggiano 2021-06-26 23:16:58 +02:00 committed by GitHub
commit 6f992a6ea3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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