1
0
Fork 0

License now defaults to an empty array

pull/171/head
Jordi Boggiano 2011-12-22 10:07:58 +01:00
parent 3b9dd59da3
commit 5c8eb355ce
1 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class MemoryPackage extends BasePackage
protected $version;
protected $prettyVersion;
protected $repositories;
protected $license;
protected $license = array();
protected $releaseDate;
protected $keywords;
protected $authors;
@ -293,9 +293,9 @@ class MemoryPackage extends BasePackage
/**
* Set the license
*
* @param string $license
* @param array $license
*/
public function setLicense($license)
public function setLicense(array $license)
{
$this->license = $license;
}