Skip to content

Commit

Permalink
Revert "Update deps (ddeboer#549)"
Browse files Browse the repository at this point in the history
This reverts commit 650e43d.
  • Loading branch information
vladimir.kaprielov committed Oct 27, 2022
1 parent dec03b6 commit f4ca65c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"laminas/laminas-mail": "^2.17",
"phpstan/phpstan": "^1.8.4",
"friendsofphp/php-cs-fixer": "^v3.9.5",
"laminas/laminas-mail": "^2.16.0",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-strict-rules": "^1.4.3",
"phpunit/phpunit": "^9.5.24"
"phpstan/phpstan-strict-rules": "^1.3.0",
"phpunit/phpunit": "^9.5.21"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Message/AbstractPart.php
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ private static function isAttachment(\stdClass $part): bool
if (
'inline' === \strtolower($part->disposition)
&& self::SUBTYPE_PLAIN !== \strtoupper($part->subtype)
&& self::SUBTYPE_HTML !== \strtoupper($part->subtype)
&& self::SUBTYPE_HTML !== \strtoupper($part->subtype)
) {
return true;
}
Expand Down

0 comments on commit f4ca65c

Please sign in to comment.