Reformat various code.

This commit is contained in:
James Cole
2022-03-29 14:59:58 +02:00
parent 29bed2547c
commit d1a09ff33b
115 changed files with 2700 additions and 2699 deletions

View File

@@ -34,8 +34,8 @@ class BillWarningMail extends Mailable
use Queueable, SerializesModels;
public Bill $bill;
public string $field;
public int $diff;
public string $field;
/**
* ConfirmEmailChangeMail constructor.
@@ -46,9 +46,9 @@ class BillWarningMail extends Mailable
*/
public function __construct(Bill $bill, string $field, int $diff)
{
$this->bill = $bill;
$this->field = $field;
$this->diff = $diff;
$this->bill = $bill;
$this->field = $field;
$this->diff = $diff;
}
/**