mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-06-01 23:00:18 +01:00
parent
2b410128c1
commit
30d83f7682
1 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@ class GmailFilter
|
|||
*/
|
||||
public function from(array $values)
|
||||
{
|
||||
$this->condition('from', implode('||', $values));
|
||||
$this->condition('from', implode(' OR ', $values));
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
@ -175,7 +175,7 @@ class GmailFilter
|
|||
*/
|
||||
public function to(array $values)
|
||||
{
|
||||
$this->condition('to', implode('||', $values));
|
||||
$this->condition('to', implode(' OR ', $values));
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue