1
0
Fork 0

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

Fix initial values of CompletePackage properties
pull/9991/head
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
1 changed files with 3 additions and 3 deletions

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();