mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Add newlines and copyright notices.
This commit is contained in:
@@ -59,4 +59,4 @@ class CLIToken implements BinderInterface
|
||||
}
|
||||
throw new NotFoundHttpException;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -48,4 +48,4 @@ class ConfigurationName implements BinderInterface
|
||||
}
|
||||
throw new NotFoundHttpException;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -36,4 +36,4 @@ abstract class AbstractCronjob
|
||||
*/
|
||||
abstract public function fire(): bool;
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -81,4 +81,4 @@ class RecurringCronjob extends AbstractCronjob
|
||||
$job->handle();
|
||||
app('fireflyconfig')->set('last_rt_job', time());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -118,4 +118,4 @@ class FinTS
|
||||
throw new FireflyException($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -46,4 +46,4 @@ class MetadataParser
|
||||
|
||||
return $finTSDescription;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -87,4 +87,4 @@ trait AccountFilter
|
||||
|
||||
return $return; // @codeCoverageIgnore
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -66,4 +66,4 @@ trait TransactionFilter
|
||||
return $return;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -90,4 +90,4 @@ trait BasicDataSupport
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -216,4 +216,4 @@ trait CreateStuff
|
||||
throw new FireflyException($e->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -250,4 +250,4 @@ trait GetConfigurationData
|
||||
request()->session()->flash('warning', trans('firefly.recurring_cron_long_ago'));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -62,4 +62,4 @@ trait ModelInformation
|
||||
return $count > 2;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -456,4 +456,4 @@ trait PeriodOverview
|
||||
return $return;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -326,4 +326,4 @@ trait RenderPartialViews
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -403,4 +403,4 @@ trait RequestInformation
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -199,4 +199,4 @@ trait TransactionCalculation
|
||||
return $collector->getTransactions();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -149,4 +149,4 @@ trait UserNavigation
|
||||
Log::debug(sprintf('Will put previous URI in cache under key %s: %s', $identifier, $url));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -120,4 +120,4 @@ class ChooseAccountHandler implements FinTSConfigurationInterface
|
||||
$this->accountRepository = app(AccountRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -50,4 +50,4 @@ interface FinTSConfigurationInterface
|
||||
* @param ImportJob $importJob
|
||||
*/
|
||||
public function setImportJob(ImportJob $importJob): void;
|
||||
}
|
||||
}
|
||||
|
@@ -107,4 +107,4 @@ class NewFinTSJobHandler implements FinTSConfigurationInterface
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -255,4 +255,4 @@ class NewYnabJobHandler implements YnabJobConfigurationInterface
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -234,4 +234,4 @@ class SelectAccountsHandler implements YnabJobConfigurationInterface
|
||||
|
||||
return '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -182,4 +182,4 @@ class SelectBudgetHandler implements YnabJobConfigurationInterface
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -69,4 +69,4 @@ interface YnabJobConfigurationInterface
|
||||
* @param ImportJob $importJob
|
||||
*/
|
||||
public function setImportJob(ImportJob $importJob): void;
|
||||
}
|
||||
}
|
||||
|
@@ -241,4 +241,4 @@ class PaymentConverter
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -117,4 +117,4 @@ class OFXProcessor implements FileProcessorInterface
|
||||
$this->repository->setUser($importJob->user);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -186,4 +186,4 @@ class StageImportDataHandler
|
||||
|
||||
return $storeData;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -77,4 +77,4 @@ class GetAccountsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -275,4 +275,4 @@ class ImportDataHandler
|
||||
|
||||
return $request->transactions;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -105,4 +105,4 @@ class StageGetAccessHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -72,4 +72,4 @@ class StageGetBudgetsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -52,4 +52,4 @@ class StageGetTransactionsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -54,4 +54,4 @@ class StageMatchAccountsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user