diff --git a/.php_cs b/.php_cs index 23ba165..c40df9c 100644 --- a/.php_cs +++ b/.php_cs @@ -1,13 +1,32 @@ in('src') + ->in('tests'); + +return PhpCsFixer\Config::create() + ->setRiskyAllowed(true) + ->setRules([ + '@PSR2' => true, + '@Symfony' => true, + 'strict_param' => true, + 'array_syntax' => ['syntax' => 'short'], + 'declare_strict_types' => false, // true + 'no_empty_phpdoc' => true, + 'no_superfluous_phpdoc_tags' => false, // true + 'header_comment' => [ + 'commentType' => 'comment', + 'header' => $header, + 'location' => 'after_declare_strict', + 'separate' => 'both', + ], + ]) + ->setFinder($finder) +; diff --git a/src/Api/Domain.php b/src/Api/Domain.php index 040462b..d67f96d 100644 --- a/src/Api/Domain.php +++ b/src/Api/Domain.php @@ -56,7 +56,7 @@ class Domain extends HttpApi /** * Returns a single domain. * - * @param string $domain Name of the domain. + * @param string $domain name of the domain * * @return ShowResponse|array|ResponseInterface */ @@ -76,10 +76,10 @@ class Domain extends HttpApi * * @see https://documentation.mailgun.com/en/latest/api-domains.html#domains * - * @param string $domain Name of the domain. - * @param string $smtpPass Password for SMTP authentication. - * @param string $spamAction `disable` or `tag` - inbound spam filtering. - * @param bool $wildcard Domain will accept email for subdomains. + * @param string $domain name of the domain + * @param string $smtpPass password for SMTP authentication + * @param string $spamAction `disable` or `tag` - inbound spam filtering + * @param bool $wildcard domain will accept email for subdomains * * @return CreateResponse|array|ResponseInterface */ @@ -108,7 +108,7 @@ class Domain extends HttpApi * Removes a domain from the account. * WARNING: This action is irreversible! Be cautious! * - * @param string $domain Name of the domain. + * @param string $domain name of the domain * * @return DeleteResponse|array|ResponseInterface */ @@ -124,7 +124,7 @@ class Domain extends HttpApi /** * Returns a list of SMTP credentials for the specified domain. * - * @param string $domain Name of the domain. + * @param string $domain name of the domain * @param int $limit Number of credentials to return * @param int $skip Number of credentials to omit from the list * @@ -149,8 +149,8 @@ class Domain extends HttpApi /** * Create a new SMTP credential pair for the specified domain. * - * @param string $domain Name of the domain. - * @param string $login SMTP Username. + * @param string $domain name of the domain + * @param string $login SMTP Username * @param string $password SMTP Password. Length min 5, max 32. * * @return CreateCredentialResponse|array|ResponseInterface @@ -175,8 +175,8 @@ class Domain extends HttpApi /** * Update a set of SMTP credentials for the specified domain. * - * @param string $domain Name of the domain. - * @param string $login SMTP Username. + * @param string $domain name of the domain + * @param string $login SMTP Username * @param string $pass New SMTP Password. Length min 5, max 32. * * @return UpdateCredentialResponse|array|ResponseInterface @@ -200,8 +200,8 @@ class Domain extends HttpApi /** * Remove a set of SMTP credentials from the specified domain. * - * @param string $domain Name of the domain. - * @param string $login SMTP Username. + * @param string $domain name of the domain + * @param string $login SMTP Username * * @return DeleteCredentialResponse|array|ResponseInterface */ @@ -224,7 +224,7 @@ class Domain extends HttpApi /** * Returns delivery connection settings for the specified domain. * - * @param string $domain Name of the domain. + * @param string $domain name of the domain * * @return ConnectionResponse|ResponseInterface */ @@ -241,9 +241,9 @@ class Domain extends HttpApi * Updates the specified delivery connection settings for the specified domain. * If a parameter is passed in as null, it will not be updated. * - * @param string $domain Name of the domain. - * @param bool|null $requireTLS Enforces that messages are sent only over a TLS connection. - * @param bool|null $noVerify Disables TLS certificate and hostname verification. + * @param string $domain name of the domain + * @param bool|null $requireTLS enforces that messages are sent only over a TLS connection + * @param bool|null $noVerify disables TLS certificate and hostname verification * * @return UpdateConnectionResponse|array|ResponseInterface */ @@ -271,7 +271,7 @@ class Domain extends HttpApi /** * Returns a single domain. * - * @param string $domain Name of the domain. + * @param string $domain name of the domain * * @return VerifyResponse|array|ResponseInterface */ diff --git a/src/Api/MailingList/Member.php b/src/Api/MailingList/Member.php index e91585a..3fe2fd5 100644 --- a/src/Api/MailingList/Member.php +++ b/src/Api/MailingList/Member.php @@ -122,7 +122,8 @@ class Member extends HttpApi // workaround for webmozart/asserts <= 1.2 if (count($members) > 1000) { - throw new InvalidArgumentException(sprintf('Expected an Array to contain at most %2$d elements. Got: %d', + throw new InvalidArgumentException(sprintf( + 'Expected an Array to contain at most %2$d elements. Got: %d', 1000, count($members) )); diff --git a/src/Message/BatchMessage.php b/src/Message/BatchMessage.php index b861a0f..8c48c4e 100644 --- a/src/Message/BatchMessage.php +++ b/src/Message/BatchMessage.php @@ -78,7 +78,7 @@ class BatchMessage extends MessageBuilder protected function addRecipient($headerName, $address, array $variables) { if (array_key_exists($headerName, $this->counters['recipients'])) { - if ($this->counters['recipients'][$headerName] === self::RECIPIENT_COUNT_LIMIT) { + if (self::RECIPIENT_COUNT_LIMIT === $this->counters['recipients'][$headerName]) { if (false === $this->autoSend) { throw TooManyRecipients::whenAutoSendDisabled(); } diff --git a/src/Message/MessageBuilder.php b/src/Message/MessageBuilder.php index e351c2e..4fe52e9 100644 --- a/src/Message/MessageBuilder.php +++ b/src/Message/MessageBuilder.php @@ -135,7 +135,7 @@ class MessageBuilder $this->message[$headerName] = [$compiledAddress]; } if (array_key_exists($headerName, $this->counters['recipients'])) { - $this->counters['recipients'][$headerName] += 1; + ++$this->counters['recipients'][$headerName]; } return $this; @@ -383,7 +383,7 @@ class MessageBuilder } else { $this->message['o:campaign'] = [(string) $campaignId]; } - $this->counters['attributes']['campaign_id'] += 1; + ++$this->counters['attributes']['campaign_id']; return $this; } @@ -406,7 +406,7 @@ class MessageBuilder } else { $this->message['o:tag'] = [$tag]; } - $this->counters['attributes']['tag'] += 1; + ++$this->counters['attributes']['tag']; return $this; } diff --git a/src/Model/Domain/DnsRecord.php b/src/Model/Domain/DnsRecord.php index 365a6c2..50becbc 100644 --- a/src/Model/Domain/DnsRecord.php +++ b/src/Model/Domain/DnsRecord.php @@ -64,7 +64,7 @@ final class DnsRecord } /** - * @param string|null $name Name of the record, as used in CNAME, etc. + * @param string|null $name name of the record, as used in CNAME, etc * @param string $type DNS record type * @param string $value DNS record value * @param string|null $priority Record priority, used for MX diff --git a/tests/Api/TestCase.php b/tests/Api/TestCase.php index 639211c..f2a7976 100644 --- a/tests/Api/TestCase.php +++ b/tests/Api/TestCase.php @@ -243,7 +243,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase /** * @param mixed|callable $property Example $this->requestMethod - * @param mixed $value The actual value from the user. + * @param mixed $value the actual value from the user * * @return bool */ diff --git a/tests/Model/Domain/UpdateConnectionResponseTest.php b/tests/Model/Domain/UpdateConnectionResponseTest.php index 87d9591..82f9350 100644 --- a/tests/Model/Domain/UpdateConnectionResponseTest.php +++ b/tests/Model/Domain/UpdateConnectionResponseTest.php @@ -9,7 +9,6 @@ namespace Mailgun\Tests\Model\Domain; -use Mailgun\Model\Domain\Domain; use Mailgun\Model\Domain\UpdateConnectionResponse; use Mailgun\Tests\Model\BaseModelTest; diff --git a/tests/Model/Domain/VerifyResponseTest.php b/tests/Model/Domain/VerifyResponseTest.php index 977002a..af6b68a 100644 --- a/tests/Model/Domain/VerifyResponseTest.php +++ b/tests/Model/Domain/VerifyResponseTest.php @@ -9,7 +9,6 @@ namespace Mailgun\Tests\Model\Domain; -use Mailgun\Model\Domain\Domain; use Mailgun\Model\Domain\VerifyResponse; use Mailgun\Tests\Model\BaseModelTest;