Skip to content

Commit

Permalink
Merge pull request #100 from spatie/gen-2019-09-25
Browse files Browse the repository at this point in the history
generated files 2019-09-25
  • Loading branch information
Gummibeer authored Sep 25, 2019
2 parents 51e94cf + 1c47001 commit 5315a5a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CreativeWork.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function accessMode($accessMode)
* understand all the intellectual content of a resource. Expected values
* include: auditory, tactile, textual, visual.
*
* @param string|string[] $accessModeSufficient
* @param ItemList|ItemList[] $accessModeSufficient
*
* @return static
*
Expand Down
30 changes: 30 additions & 0 deletions src/Place.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,21 @@ public function isicV4($isicV4)
return $this->setProperty('isicV4', $isicV4);
}

/**
* The latitude of a location. For example ```37.42242``` ([WGS
* 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).
*
* @param float|float[]|int|int[]|string|string[] $latitude
*
* @return static
*
* @see http://schema.org/latitude
*/
public function latitude($latitude)
{
return $this->setProperty('latitude', $latitude);
}

/**
* An associated logo.
*
Expand All @@ -274,6 +289,21 @@ public function logo($logo)
return $this->setProperty('logo', $logo);
}

/**
* The longitude of a location. For example ```-122.08585``` ([WGS
* 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).
*
* @param float|float[]|int|int[]|string|string[] $longitude
*
* @return static
*
* @see http://schema.org/longitude
*/
public function longitude($longitude)
{
return $this->setProperty('longitude', $longitude);
}

/**
* A URL to a map of the place.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Thing.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public function sameAs($sameAs)
}

/**
* A CreativeWork or Event about this Thing..
* A CreativeWork or Event about this Thing.
*
* @param CreativeWork|CreativeWork[]|Event|Event[] $subjectOf
*
Expand Down

0 comments on commit 5315a5a

Please sign in to comment.