Skip to content

Commit

Permalink
#7170 phpcs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Aug 7, 2015
1 parent ccf8cb9 commit 35752fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Validation/Validation.php
Expand Up @@ -1045,7 +1045,7 @@ public static function geoCoordinate($value, array $options = [])
'latLong' => 'both',
'type' => 'latLong'
];
if ($options['type'] !== 'latLong') {
if ($options['type'] !== 'latLong') {
throw new \RuntimeException(sprintf('Unsupported coordinate type "%s".', $options['type']));
}
if ($options['type'] === 'latLong') {
Expand Down

0 comments on commit 35752fa

Please sign in to comment.