mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-09-05 13:05:34 +01:00
parent
bac720c679
commit
d8b10d8f49
4 changed files with 101 additions and 0 deletions
13
tests/stubs/filters/a.php
Normal file
13
tests/stubs/filters/a.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
use Opdavies\GmailFilterBuilder\Model\Filter;
|
||||
|
||||
return [
|
||||
Filter::create()
|
||||
->from('foo@example.com')
|
||||
->labelAndArchive('Test'),
|
||||
|
||||
Filter::create()
|
||||
->from('bar@example.com')
|
||||
->labelAndArchive('Test 2'),
|
||||
];
|
9
tests/stubs/filters/b.php
Normal file
9
tests/stubs/filters/b.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
use Opdavies\GmailFilterBuilder\Model\Filter;
|
||||
|
||||
return [
|
||||
Filter::create()
|
||||
->from('baz@example.com')
|
||||
->labelAndArchive('Test 3'),
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue