Conditions | 3 |
Paths | 2 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | protected function guardAgainstInvalidConfiguration(array $bigQueryConfig = null) |
||
44 | { |
||
45 | if (! file_exists($bigQueryConfig['application_credentials']) && ! array_key_exists('keyFile', $bigQueryConfig)) { |
||
46 | throw InvalidConfiguration::credentialsJsonDoesNotExist($bigQueryConfig['application_credentials']); |
||
47 | } |
||
48 | } |
||
49 | } |
||
50 |