From 3161c8e66183b2645381d6bb482775378419fc0a Mon Sep 17 00:00:00 2001 From: Vincent Date: Fri, 3 Feb 2017 14:19:13 -0500 Subject: [PATCH] Fix incorrect types in phpDoc --- src/Sort.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sort.php b/src/Sort.php index 8abe013..c2d221f 100644 --- a/src/Sort.php +++ b/src/Sort.php @@ -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';