Skip to content

Commit d906e4e

Browse files
committed
Code styling fixes
1 parent 7e8d088 commit d906e4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Exceptions/CouldNotSendNotification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct($message, $code, Exception $previous = null, Interfa
1818
$this->responseAttributes = $responseAttributes;
1919
}
2020

21-
public static function serviceRespondedWithAnError($message, $responseAttributes, string $exceptionMessage='The fax failed to send via InterFAX.')
21+
public static function serviceRespondedWithAnError($message, $responseAttributes, string $exceptionMessage = 'The fax failed to send via InterFAX.')
2222
{
2323
return new static($exceptionMessage, $responseAttributes['status'], null, $message, $responseAttributes);
2424
}

src/InterfaxMessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function makeFiles(): array
8585
return $this->files;
8686
}
8787

88-
public function sleep() : void
88+
public function sleep(): void
8989
{
9090
$interval = config('services.interfax.interval', static::POLLING_INTERVAL_DEFAULT);
9191
sleep(max($interval, static::POLLING_INTERVAL_MINIMUM));

0 commit comments

Comments
 (0)