mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-01-22 12:07:32 +00:00
Fix spaces
This commit is contained in:
parent
95924a3ccd
commit
035f4fb6c7
|
@ -2,4 +2,6 @@
|
|||
|
||||
namespace Opdavies\GmailFilterBuilder\Exception;
|
||||
|
||||
class PartialNotFoundException extends \RuntimeException {}
|
||||
class PartialNotFoundException extends \RuntimeException
|
||||
{
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@ class Addresses
|
|||
});
|
||||
|
||||
if (!$file) {
|
||||
throw new PartialNotFoundException(vsprintf('%s does not exist.', [
|
||||
throw new PartialNotFoundException(vsprintf('%s does not exist.', [
|
||||
$filename,
|
||||
]));
|
||||
}
|
||||
|
|
|
@ -26,10 +26,11 @@ class AddressesTest extends TestCase
|
|||
}
|
||||
|
||||
/** @test */
|
||||
public function throw_an_exception_if_an_address_file_does_not_exist() {
|
||||
$this->expectException(PartialNotFoundException::class);
|
||||
public function throw_an_exception_if_an_address_file_does_not_exist()
|
||||
{
|
||||
$this->expectException(PartialNotFoundException::class);
|
||||
|
||||
Addresses::load('does-not-exist');
|
||||
Addresses::load('does-not-exist');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue