Updated some copyright notices [skip ci]

This commit is contained in:
James Cole
2016-12-23 07:02:45 +01:00
parent 8fb9577660
commit bf0744e03a
52 changed files with 338 additions and 126 deletions

View File

@@ -44,12 +44,14 @@ class TestDataSeeder extends Seeder
if (is_array($file)) {
// run the file:
TestData::run($file);
return;
}
Log::error('No valid data found (' . $fileName . ') for environment ' . $env);
Log::error(sprintf('No valid data found (%s) for environment %s', $fileName, $env));
return;
}
Log::info('No seed file (' . $fileName . ') for environment ' . $env);
Log::error(sprintf('No seed file (%s) for environment %s', $fileName, $env));
}
}