Compare commits

..

No commits in common. "caf5bd9664df2104434949c6bba03e0131d1106a" and "e5a842a8120e1da2164b9d8e81141f13c64b470c" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -10,12 +10,12 @@
} }
], ],
"require": { "require": {
"mcnd/notes": "^2.1.1" "mcnd/notes": "dev-master"
}, },
"repositories": [ "repositories": [
{ {
"type": "composer", "type": "vcs",
"url": "https://git.mcnd.ca/api/packages/mcndave/composer" "url": "https://github.com/mcNdave/notes.git"
} }
], ],
"autoload": { "autoload": {

View File

@ -106,7 +106,7 @@ class Having extends Fragment {
} }
# whitelisting operators # whitelisting operators
return in_array(strtoupper($this->operator), [ '=', '!=', '>', '>=', '<', '<=', '<>', 'LIKE', 'IS', 'IS NOT', 'REGEXP', 'IN' ]) ? $this->operator : "="; return in_array(strtoupper($this->operator), [ '=', '!=', '<>', 'LIKE' ]) ? $this->operator : "=";
} }
protected function value() protected function value()