1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Remove repo warnings

This commit is contained in:
Hillel Coren 2016-09-18 17:11:17 +03:00
parent 1e48a9c17d
commit d57117477c
2 changed files with 0 additions and 2 deletions

View File

@ -78,7 +78,6 @@ class ClientRepository extends BaseRepository
$client = Client::createNew();
} else {
$client = Client::scope($publicId)->with('contacts')->firstOrFail();
\Log::warning('Entity not set in client repo save');
}
// convert currency code to id

View File

@ -68,7 +68,6 @@ class TaskRepository
// do nothing
} elseif ($publicId) {
$task = Task::scope($publicId)->firstOrFail();
\Log::warning('Entity not set in task repo save');
} else {
$task = Task::createNew();
}