Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix remaining implicit marking of parameters as nullable (PHP 8.4) #566

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Attachment.php
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ public function setConfig(Config $config): Attachment {
* @return mixed
* @throws MaskNotFoundException
*/
public function mask(string $mask = null): mixed {
public function mask(?string $mask = null): mixed {
$mask = $mask !== null ? $mask : $this->mask;
if (class_exists($mask)) {
return new $mask($this);
Expand Down
2 changes: 1 addition & 1 deletion src/Decoder/Decoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function __construct(
* @param string|null $encoding
* @return mixed
*/
public function decode(array|string|null $value, string $encoding = null): mixed {
public function decode(array|string|null $value, ?string $encoding = null): mixed {
return $value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Decoder/DecoderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function __construct(array $options = [], string $fallback_encoding = 'UT
* @param string|null $encoding
* @return string|array|null
*/
public function decode(array|string|null $value, string $encoding = null): mixed;
public function decode(array|string|null $value, ?string $encoding = null): mixed;

public function mimeHeaderDecode(string $text): array;

Expand Down
2 changes: 1 addition & 1 deletion src/Decoder/HeaderDecoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
class HeaderDecoder extends Decoder {

public function decode(array|string|null $value, string $encoding = null): mixed {
public function decode(array|string|null $value, ?string $encoding = null): mixed {
if (is_array($value)) {
return $this->decodeHeaderArray($value);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Decoder/MessageDecoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
class MessageDecoder extends Decoder {

public function decode(array|string|null $value, string $encoding = null): mixed {
public function decode(array|string|null $value, ?string $encoding = null): mixed {
if(is_array($value)) {
return array_map(function($item){
return $this->decode($item);
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/FixtureTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ final public function __construct(?string $name = null, array $data = [], $dataN
* @throws ResponseException
* @throws RuntimeException
*/
final public function getFixture(string $template, Config $config = null) : Message {
final public function getFixture(string $template, ?Config $config = null) : Message {
$filename = implode(DIRECTORY_SEPARATOR, [__DIR__, "..", "messages", $template]);
$message = Message::fromFile($filename, $config);
self::assertInstanceOf(Message::class, $message);
Expand Down
4 changes: 2 additions & 2 deletions tests/live/LegacyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ final protected function appendMessageTemplate(Folder $folder, string $template)
* @throws ResponseException
* @throws RuntimeException
*/
final protected function deleteFolder(Folder $folder = null): bool {
final protected function deleteFolder(?Folder $folder = null): bool {
$response = $folder?->delete(false);
if (is_array($response)) {
$valid_response = false;
Expand Down Expand Up @@ -423,7 +423,7 @@ public function testQueryWhereCriteria(): void {
* @throws ResponseException
* @throws RuntimeException
*/
protected function assertWhereSearchCriteria(Folder $folder, string $criteria, Carbon|string $value = null, bool $date = false): void {
protected function assertWhereSearchCriteria(Folder $folder, string $criteria, Carbon|string|null $value = null, bool $date = false): void {
$query = $folder->query()->where($criteria, $value);
self::assertInstanceOf(WhereQuery::class, $query);

Expand Down
2 changes: 1 addition & 1 deletion tests/live/LiveMailboxTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ final protected function appendMessageTemplate(Folder $folder, string $template)
* @throws ResponseException
* @throws RuntimeException
*/
final protected function deleteFolder(Folder $folder = null): bool {
final protected function deleteFolder(?Folder $folder = null): bool {
$response = $folder?->delete(false);
if (is_array($response)) {
$valid_response = false;
Expand Down
2 changes: 1 addition & 1 deletion tests/live/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public function testQueryWhereCriteria(): void {
* @throws ResponseException
* @throws RuntimeException
*/
protected function assertWhereSearchCriteria(Folder $folder, string $criteria, Carbon|string $value = null, bool $date = false): void {
protected function assertWhereSearchCriteria(Folder $folder, string $criteria, Carbon|string|null $value = null, bool $date = false): void {
$query = $folder->query()->where($criteria, $value);
self::assertInstanceOf(WhereQuery::class, $query);

Expand Down