mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
commit
c64227d90b
@ -51,7 +51,7 @@ class Sha3SignatureGenerator implements SignatureGeneratorInterface
|
|||||||
$json = json_encode($message->message, JSON_THROW_ON_ERROR);
|
$json = json_encode($message->message, JSON_THROW_ON_ERROR);
|
||||||
} catch (JsonException $e) {
|
} catch (JsonException $e) {
|
||||||
Log::error('Could not generate hash.');
|
Log::error('Could not generate hash.');
|
||||||
Log::error(sprintf('JSON value: %s', $message->message));
|
Log::error(sprintf('JSON value: %s', $json));
|
||||||
Log::error($e->getMessage());
|
Log::error($e->getMessage());
|
||||||
Log::error($e->getTraceAsString());
|
Log::error($e->getTraceAsString());
|
||||||
throw new FireflyException('Could not generate JSON for SHA3 hash.', 0, $e);
|
throw new FireflyException('Could not generate JSON for SHA3 hash.', 0, $e);
|
||||||
|
@ -36,9 +36,6 @@ use stdClass;
|
|||||||
*/
|
*/
|
||||||
class JournalCLIRepository implements JournalCLIRepositoryInterface
|
class JournalCLIRepository implements JournalCLIRepositoryInterface
|
||||||
{
|
{
|
||||||
/** @var User */
|
|
||||||
private $user;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all transaction journals with a specific type, regardless of user.
|
* Get all transaction journals with a specific type, regardless of user.
|
||||||
*
|
*
|
||||||
@ -234,6 +231,6 @@ class JournalCLIRepository implements JournalCLIRepositoryInterface
|
|||||||
*/
|
*/
|
||||||
public function setUser(User $user): void
|
public function setUser(User $user): void
|
||||||
{
|
{
|
||||||
$this->user = $user;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,6 @@ class FrontpageChartGenerator
|
|||||||
private Carbon $end;
|
private Carbon $end;
|
||||||
private string $monthAndDayFormat;
|
private string $monthAndDayFormat;
|
||||||
private Carbon $start;
|
private Carbon $start;
|
||||||
private User $user;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* FrontpageChartGenerator constructor.
|
* FrontpageChartGenerator constructor.
|
||||||
@ -226,7 +225,6 @@ class FrontpageChartGenerator
|
|||||||
*/
|
*/
|
||||||
public function setUser(User $user): void
|
public function setUser(User $user): void
|
||||||
{
|
{
|
||||||
$this->user = $user;
|
|
||||||
$this->budgetRepository->setUser($user);
|
$this->budgetRepository->setUser($user);
|
||||||
$this->blRepository->setUser($user);
|
$this->blRepository->setUser($user);
|
||||||
$this->opsRepository->setUser($user);
|
$this->opsRepository->setUser($user);
|
||||||
|
@ -69,7 +69,6 @@ class OperatorQuerySearch implements SearchInterface
|
|||||||
private CategoryRepositoryInterface $categoryRepository;
|
private CategoryRepositoryInterface $categoryRepository;
|
||||||
private GroupCollectorInterface $collector;
|
private GroupCollectorInterface $collector;
|
||||||
private CurrencyRepositoryInterface $currencyRepository;
|
private CurrencyRepositoryInterface $currencyRepository;
|
||||||
private Carbon $date;
|
|
||||||
private array $invalidOperators;
|
private array $invalidOperators;
|
||||||
private int $limit;
|
private int $limit;
|
||||||
private Collection $operators;
|
private Collection $operators;
|
||||||
@ -94,7 +93,6 @@ class OperatorQuerySearch implements SearchInterface
|
|||||||
$this->prohibitedWords = [];
|
$this->prohibitedWords = [];
|
||||||
$this->invalidOperators = [];
|
$this->invalidOperators = [];
|
||||||
$this->limit = 25;
|
$this->limit = 25;
|
||||||
$this->date = today(config('app.timezone'));
|
|
||||||
$this->validOperators = array_keys(config('search.operators'));
|
$this->validOperators = array_keys(config('search.operators'));
|
||||||
$this->startTime = microtime(true);
|
$this->startTime = microtime(true);
|
||||||
$this->accountRepository = app(AccountRepositoryInterface::class);
|
$this->accountRepository = app(AccountRepositoryInterface::class);
|
||||||
@ -2019,14 +2017,6 @@ class OperatorQuerySearch implements SearchInterface
|
|||||||
return $this->words;
|
return $this->words;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Carbon $date
|
|
||||||
*/
|
|
||||||
public function setDate(Carbon $date): void
|
|
||||||
{
|
|
||||||
$this->date = $date;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
|
||||||
|
2
public/v1/lib/adminlte/css/AdminLTE.css
vendored
2
public/v1/lib/adminlte/css/AdminLTE.css
vendored
@ -1806,7 +1806,7 @@ a:focus {
|
|||||||
left: auto;
|
left: auto;
|
||||||
}
|
}
|
||||||
.box-header > .box-tools .dropdown-menu > li > a {
|
.box-header > .box-tools .dropdown-menu > li > a {
|
||||||
color: #444 !important;
|
color: #444;
|
||||||
}
|
}
|
||||||
.btn-box-tool {
|
.btn-box-tool {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
2
public/v1/lib/adminlte/css/AdminLTE.min.css
vendored
2
public/v1/lib/adminlte/css/AdminLTE.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
profile:
|
profile:
|
||||||
name: qodana.starter
|
name: qodana.recommended
|
||||||
version: "1.0"
|
version: "1.0"
|
||||||
linter: jetbrains/qodana-php:2022.3-eap
|
linter: jetbrains/qodana-php:2022.3-eap
|
||||||
|
Loading…
Reference in New Issue
Block a user