Add newline to files

This commit is contained in:
James Cole
2019-08-17 12:09:03 +02:00
parent b53cbbe469
commit fc78c32fca
153 changed files with 243 additions and 125 deletions

View File

@@ -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;
}
}
}

View File

@@ -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);
}
}

View File

@@ -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;
}
}
}

View File

@@ -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;
}
}