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

@@ -239,4 +239,4 @@ class FrontpageChartGenerator
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/*
* CategoryReportGenerator.php
* Copyright (c) 2020 james@firefly-iii.org
@@ -205,4 +206,4 @@ class CategoryReportGenerator
$this->opsRepository->setUser($user);
}
}
}

View File

@@ -37,4 +37,4 @@ trait ChecksLogin
// Only allow logged in users
return auth()->check();
}
}
}

View File

@@ -50,4 +50,4 @@ trait GetRuleConfiguration
}
return $return;
}
}
}

View File

@@ -832,4 +832,4 @@ class OperatorQuerySearch implements SearchInterface
{
return $this->accountRepository->getCashAccount();
}
}
}