How can I modify my CakePHP 3 query builder so that it could have two "like" functions with values (of "OR" logic function)?
This works:
$exp->eq('b2','my_value')->like('b3','%'.$value.'%')
I would like something like this (it does not work):
$exp->eq('b2','my_value')->like('b3','%'.$valueB3.'%')->like('b4','%'.$valueB4.'%')