Skip to content
Snippets Groups Projects
Commit 231f11e8 authored by Jared Hancock's avatar Jared Hancock
Browse files

lint: Fix a few undefined items

parent 29fca26b
No related branches found
No related tags found
No related merge requests found
...@@ -247,7 +247,7 @@ class EndUser extends BaseAuthenticatedUser { ...@@ -247,7 +247,7 @@ class EndUser extends BaseAuthenticatedUser {
return $this->getNumTickets($forMyOrg, 'open') ?: 0; return $this->getNumTickets($forMyOrg, 'open') ?: 0;
} }
function getNumClosedTickets() { function getNumClosedTickets($forMyOrg=false) {
return $this->getNumTickets($forMyOrg, 'closed') ?: 0; return $this->getNumTickets($forMyOrg, 'closed') ?: 0;
} }
......
...@@ -128,6 +128,7 @@ class IntlBreakIterator { ...@@ -128,6 +128,7 @@ class IntlBreakIterator {
class SqlFunction { class SqlFunction {
static function NOW() {} static function NOW() {}
static function COALESCE() {} static function COALESCE() {}
static function DATEDIFF() {}
} }
class SqlExpression { class SqlExpression {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment