Skip to content

Commit

Permalink
#7170 Documentation updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Aug 6, 2015
1 parent a350b63 commit 2c0c9c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Validation/Validation.php
Expand Up @@ -1032,7 +1032,7 @@ public static function uploadedFile($file, array $options = [])
* ### Options
*
* - `type` - A string of the coordinate format, right now only `longLat`.
* - `longLat` - By default `both`, can be `long` and `lat` as well to validate
* - `latLong` - By default `both`, can be `long` and `lat` as well to validate
* only a part of the coordinate.
*
* @param string $value Geographic location as string
Expand Down Expand Up @@ -1064,11 +1064,11 @@ public static function geoCoordinate($value, array $options = [])
/**
* Convenience method for latitude validation.
*
* @link https://en.wikipedia.org/wiki/Latitude
* @see Validation::geoCoordinate()
* @param string $value Latitude as string
* @param array $options Options for the validation logic.
* @return bool
* @link https://en.wikipedia.org/wiki/Latitude
* @see Validation::geoCoordinate()
*/
public static function latitude($value, array $options = [])
{
Expand All @@ -1079,11 +1079,11 @@ public static function latitude($value, array $options = [])
/**
* Convenience method for longitude validation.
*
* @link https://en.wikipedia.org/wiki/Longitude
* @see Validation::geoCoordinate()
* @param string $value Latitude as string
* @param array $options Options for the validation logic.
* @return bool
* @link https://en.wikipedia.org/wiki/Longitude
* @see Validation::geoCoordinate()
*/
public static function longitude($value, array $options = [])
{
Expand Down

0 comments on commit 2c0c9c6

Please sign in to comment.