Add docblocks, small fixes

This commit is contained in:
Oliver Davies 2017-12-30 10:56:07 +00:00
parent 9097da2972
commit 728d284f09
3 changed files with 101 additions and 13 deletions

View file

@ -55,8 +55,7 @@ class FilterTest extends TestCase
// Ensure that we can set multiple from addresses.
$this->assertEquals(
['from' => ['foo@example.com', 'bar@example.com']],
$this->filter->from(['foo@example.com', 'bar@example.com'])
->getProperties()
$this->filter->from(['foo@example.com', 'bar@example.com'])->getProperties()
);
}
@ -72,8 +71,7 @@ class FilterTest extends TestCase
$this->assertEquals(
['to' => ['bar@example.com', 'baz@example.com']],
$this->filter->to(['bar@example.com', 'baz@example.com'])
->getProperties()
$this->filter->to(['bar@example.com', 'baz@example.com'])->getProperties()
);
}