Add newlines and strict type declarations.

This commit is contained in:
James Cole 2018-03-19 13:23:26 +01:00
parent c5d4ec17c3
commit 6a1d39d5f8
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
8 changed files with 9 additions and 7 deletions

View File

@ -112,4 +112,4 @@ class InstallController extends Controller
return response()->json(['OK']);
}
}
}

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace FireflyIII\Http\Middleware;

View File

@ -684,4 +684,4 @@ class BunqRoutine implements RoutineInterface
{
$this->repository->setStatus($this->job, $status);
}
}
}

View File

@ -30,4 +30,4 @@ namespace FireflyIII\Services\Bunq\Object;
class LabelMonetaryAccount extends BunqObject
{
}
}

View File

@ -67,4 +67,4 @@ class Payment extends BunqObject
exit;
}
}
}

View File

@ -92,4 +92,4 @@ class ListPaymentRequest extends BunqRequest
{
$this->userId = $userId;
}
}
}

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
return [
@ -17,4 +18,4 @@ return [
'driver' => 'bcrypt',
];
];

View File

@ -94,4 +94,4 @@ return [
],
],
];
];