mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +00:00
Add newline to files
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* JournalAPIRepository.php
|
||||
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
||||
@@ -102,4 +103,4 @@ class JournalAPIRepository implements JournalAPIRepositoryInterface
|
||||
{
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* JournalAPIRepositoryInterface.php
|
||||
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
||||
@@ -62,4 +63,4 @@ interface JournalAPIRepositoryInterface
|
||||
* @param User $user
|
||||
*/
|
||||
public function setUser(User $user);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* JournalCLIRepository.php
|
||||
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
||||
@@ -272,4 +273,4 @@ class JournalCLIRepository implements JournalCLIRepositoryInterface
|
||||
{
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* JournalCLIRepositoryInterface.php
|
||||
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
||||
@@ -116,4 +117,4 @@ interface JournalCLIRepositoryInterface
|
||||
*/
|
||||
public function getJournalCategoryId(TransactionJournal $journal): int;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -373,4 +373,4 @@ class TransactionGroupRepository implements TransactionGroupRepositoryInterfac
|
||||
$service = new TransactionGroupDestroyService;
|
||||
$service->destroy($group);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -130,4 +130,4 @@ interface TransactionGroupRepositoryInterface
|
||||
*/
|
||||
public function update(TransactionGroup $transactionGroup, array $data): TransactionGroup;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,4 +81,4 @@ class TransactionTypeRepository implements TransactionTypeRepositoryInterface
|
||||
|
||||
return TransactionType::where('type', 'LIKE', sprintf('%%%s%%', $query))->get();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,4 +51,4 @@ interface TransactionTypeRepositoryInterface
|
||||
* @return Collection
|
||||
*/
|
||||
public function searchTypes(string $query): Collection;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user