Skip to content

Commit

Permalink
chore: fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
lyrixx committed Mar 15, 2024
1 parent f39b6ea commit d4051b9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/Exception/Exception.php
Expand Up @@ -11,4 +11,6 @@

namespace Joli\JoliNotif\Exception;

interface Exception {}
interface Exception
{
}
2 changes: 1 addition & 1 deletion src/Exception/InvalidNotificationException.php
Expand Up @@ -21,7 +21,7 @@ public function __construct(
Notification $notification,
$message = '',
$code = 0,
Exception $previous = null
?Exception $previous = null
) {
$this->notification = $notification;

Expand Down
2 changes: 1 addition & 1 deletion src/Exception/NoSupportedNotifierException.php
Expand Up @@ -16,7 +16,7 @@ class NoSupportedNotifierException extends \RuntimeException implements Exceptio
public function __construct(
$message = 'No supported notifier',
$code = 0,
Exception $previous = null
?Exception $previous = null
) {
parent::__construct($message, $code, $previous);
}
Expand Down
4 changes: 3 additions & 1 deletion src/Util/OsHelper.php
Expand Up @@ -16,4 +16,6 @@
/**
* @deprecated since 2.6, use OsHelper from jolicode/php-os-helper instead
*/
class OsHelper extends BaseOsHelper {}
class OsHelper extends BaseOsHelper
{
}

0 comments on commit d4051b9

Please sign in to comment.