diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2019-04-24 11:01:37 +0200 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2019-04-25 18:17:19 +0200 |
commit | 79c92da8c14de61dccc015f04c3900aac4bd4179 (patch) | |
tree | 7b4e0f51d2bd2508905fdc697b31a73810a1b5d5 /src/Mail/Transport/Transport.php | |
parent | 7c3a0c70e8d23f47287ead148c6b8682216352c6 (diff) |
Formatting
```bash
php-cs-fixer fix --allow-risky=yes --rules=@PSR2,psr4,mb_str_functions.php_unit_construct,php_unit_ordered_covers,trailing_comma_in_multiline_array --rules='{"array_syntax": {"syntax":"short"}}' [tests/|src/]
```
Diffstat (limited to 'src/Mail/Transport/Transport.php')
-rw-r--r-- | src/Mail/Transport/Transport.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Mail/Transport/Transport.php b/src/Mail/Transport/Transport.php index 691faf60..b83620a6 100644 --- a/src/Mail/Transport/Transport.php +++ b/src/Mail/Transport/Transport.php @@ -21,12 +21,16 @@ abstract class Transport implements SwiftTransport /** * Start this Transport mechanism. */ - public function start() { } + public function start() + { + } /** * Stop this Transport mechanism. */ - public function stop() { } + public function stop() + { + } /** * Check if this Transport mechanism is alive. @@ -59,7 +63,9 @@ abstract class Transport implements SwiftTransport * * @param Swift_Events_EventListener $plugin */ - public function registerPlugin(Swift_Events_EventListener $plugin) { } + public function registerPlugin(Swift_Events_EventListener $plugin) + { + } /** * Returns a unified list of all recipients |