Code reformat.

This commit is contained in:
James Cole 2015-07-15 21:06:26 +02:00
parent 4d76afbe01
commit 0a2a01c44c
25 changed files with 266 additions and 264 deletions

View File

@ -29,7 +29,7 @@ class AccountId extends BasicConverter implements ConverterInterface
$account = Auth::user()->accounts()->find($this->value);
if (!is_null($account)) {
Log::debug('Found ' . $account->accountType->type . ' named "******" with ID: ' . $this->value.' (not mapped) ');
Log::debug('Found ' . $account->accountType->type . ' named "******" with ID: ' . $this->value . ' (not mapped) ');
}
}

View File

@ -7,9 +7,10 @@ use Crypt;
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Helpers\Csv\Mapper\MapperInterface;
use League\Csv\Reader;
use Log;
use ReflectionException;
use Session;
use Log;
/**
* Class Wizard
*
@ -110,6 +111,7 @@ class Wizard implements WizardInterface
foreach ($fields as $field) {
if (!Session::has($field)) {
Log::error('Session is missing field: ' . $field);
return false;
}
}