Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 428122a

Browse files
committed
fix code style
1 parent e59fb22 commit 428122a

20 files changed

+0
-21
lines changed

‎src/Contract/Message.php‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
interface Message extends Serializable
88
{
9-
10-
119
/**
1210
* @param string $email Sender email.
1311
* @param string|null $name Sender name.

‎src/Contract/Spool.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
interface Spool
66
{
7-
87
/**
98
* @param Message $message
109
* @param int $attempt

‎src/Contract/Transport.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
interface Transport
88
{
9-
109
/**
1110
* @param Message $message
1211
* @return bool

‎src/Exception/HeaderNotModifiedException.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
final class HeaderNotModifiedException extends InvalidArgumentException
88
{
9-
109
public function __construct($header, $method = null)
1110
{
1211
$message = 'header "' . $header . '" is not modified.';

‎src/Exception/InvalidAttachmentNameException.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
final class InvalidAttachmentNameException extends InvalidArgumentException
88
{
9-
109
public function __construct($name)
1110
{
1211
parent::__construct('invalid attachment ' . $name, 1);

‎src/Exception/InvalidEmailException.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
final class InvalidEmailException extends InvalidArgumentException
88
{
9-
109
public function __construct($email)
1110
{
1211
parent::__construct('email ' . $email . ' is invalid', 1);

‎src/Exception/RecipientsListEmptyException.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
final class RecipientsListEmptyException extends Exception
88
{
9-
109
public function __construct()
1110
{
1211
parent::__construct('recipients list is empty', 1);

‎src/Exception/TransportException.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
final class TransportException extends RuntimeException
88
{
9-
109
public function __construct($message, $code)
1110
{
1211
parent::__construct($message, $code);

‎src/Mailer.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
final class Mailer
1111
{
12-
1312
const MAILER_VERSION = "5.0.2";
1413

1514
/**

‎src/Message.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
final class Message implements MessageContract
1212
{
13-
1413
const RECIPIENT_TO = 'to';
1514
const RECIPIENT_CC = 'cc';
1615
const RECIPIENT_BCC = 'bcc';

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /