Skip to content

Commit

Permalink
Merge c4ae889 into f3f5221
Browse files Browse the repository at this point in the history
  • Loading branch information
Jleagle committed Jul 14, 2017
2 parents f3f5221 + c4ae889 commit e08d46e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Predicate/LikeBinaryPredicate.php
@@ -0,0 +1,15 @@
<?php
namespace Packaged\QueryBuilder\Predicate;

class LikeBinaryPredicate extends LikePredicate
{
/**
* Operator e.g. =, >= >
*
* @return string
*/
public function getOperator()
{
return 'LIKE BINARY';
}
}

0 comments on commit e08d46e

Please sign in to comment.