Add some more phpdoc typings

This commit is contained in:
Robin Appelman 2018-01-25 12:56:14 +01:00
commit 82bcf2cebb
3 changed files with 20 additions and 0 deletions

View file

@ -30,9 +30,21 @@ class PropDesc implements XmlSerializable {
* @var string[]
*/
public $properties = [];
/**
* @var string
*/
public $dataType;
/**
* @var boolean
*/
public $searchable;
/**
* @var boolean
*/
public $selectable;
/**
* @var boolean
*/
public $sortable;
function xmlSerialize(Writer $writer) {