doc: add comments to remaining exits

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/602/head
Varun Patil 2023-04-20 14:12:42 -07:00
parent 31e753c176
commit 2d6ac784b3
2 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ class PublicController extends AuthPublicShareController
header('HTTP/1.1 302 Found'); header('HTTP/1.1 302 Found');
header('Location: '.$url); header('Location: '.$url);
exit; exit; // no other way to do this due to typing of super class
} }
/** Get initial state of single item */ /** Get initial state of single item */

View File

@ -69,7 +69,7 @@ class TimelineQuery
$sql = self::replaceQueryParams($query, $sql); $sql = self::replaceQueryParams($query, $sql);
echo "{$sql}"; echo "{$sql}";
exit; exit; // only for debugging, so this is okay
} }
public static function replaceQueryParams(IQueryBuilder &$query, string $sql) public static function replaceQueryParams(IQueryBuilder &$query, string $sql)