|
@@ -36,6 +36,7 @@ class MemoryPackage extends BasePackage
|
|
protected $releaseDate;
|
|
protected $releaseDate;
|
|
protected $keywords;
|
|
protected $keywords;
|
|
protected $authors;
|
|
protected $authors;
|
|
|
|
+ protected $description;
|
|
protected $extra = array();
|
|
protected $extra = array();
|
|
|
|
|
|
protected $requires = array();
|
|
protected $requires = array();
|
|
@@ -451,6 +452,24 @@ class MemoryPackage extends BasePackage
|
|
return $this->authors;
|
|
return $this->authors;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Set the description
|
|
|
|
+ *
|
|
|
|
+ * @param string $description
|
|
|
|
+ */
|
|
|
|
+ public function setDescription($description)
|
|
|
|
+ {
|
|
|
|
+ $this->description = $description;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * {@inheritDoc}
|
|
|
|
+ */
|
|
|
|
+ public function getDescription()
|
|
|
|
+ {
|
|
|
|
+ return $this->description;
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Set the autoload mapping
|
|
* Set the autoload mapping
|
|
*
|
|
*
|