38 function __construct($licenseId, $licenseShortName, $licenseName)
40 $this->
id = $licenseId;
41 $this->shortName = $licenseShortName;
42 $this->fullName = $licenseName ? : $licenseShortName;
58 return $this->fullName;
66 return $this->shortName;
69 public function __toString()
73 .
", ".$this->shortName
__construct($licenseId, $licenseShortName, $licenseName)