Fix incorrect types in phpDoc

This commit is contained in:
Vincent 2017-02-03 14:19:13 -05:00
parent 40daaa5fc3
commit 3161c8e661

View file

@ -27,7 +27,7 @@ class Sort
*
* Variable to utilize ascending sort
*
* @var integer
* @var string
*/
const ASC = 'ASC';
@ -36,7 +36,7 @@ class Sort
*
* Variable to utilize descending sort
*
* @var integer
* @var string
*/
const DESC = 'DESC';