Add newlines and strict types check.

This commit is contained in:
James Cole
2020-12-22 05:35:06 +01:00
parent c7cf55b831
commit b263120c8f
48 changed files with 79 additions and 44 deletions

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/*
* StandardWebhookSender.php
* Copyright (c) 2020 james@firefly-iii.org
@@ -116,4 +117,4 @@ class StandardWebhookSender implements WebhookSenderInterface
//$this->sendMessageV0($this->message);
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/*
* WebhookSenderInterface.php
* Copyright (c) 2020 james@firefly-iii.org
@@ -42,4 +43,4 @@ interface WebhookSenderInterface
*
*/
public function send(): void;
}
}