-
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update types by current rdfa - 2019-05-28 09:20 UTC
- Loading branch information
Showing
57 changed files
with
1,267 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
namespace Spatie\SchemaOrg; | ||
|
||
/** | ||
* A radio channel that uses AM. | ||
* | ||
* @see http://schema.org/AMRadioChannel | ||
* | ||
* @mixin \Spatie\SchemaOrg\RadioChannel | ||
*/ | ||
class AMRadioChannel extends BaseType | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<?php | ||
|
||
namespace Spatie\SchemaOrg; | ||
|
||
/** | ||
* A set of requirements that a must be fulfilled in order to perform an Action. | ||
* | ||
* @see http://schema.org/ActionAccessSpecification | ||
* | ||
* @mixin \Spatie\SchemaOrg\Intangible | ||
*/ | ||
class ActionAccessSpecification extends BaseType | ||
{ | ||
/** | ||
* | ||
* | ||
* @param $availabilityEnds | ||
* | ||
* @return static | ||
* | ||
* @see http://schema.org/availabilityEnds | ||
*/ | ||
public function availabilityEnds($availabilityEnds) | ||
{ | ||
return $this->setProperty('availabilityEnds', $availabilityEnds); | ||
} | ||
|
||
/** | ||
* | ||
* | ||
* @param $availabilityStarts | ||
* | ||
* @return static | ||
* | ||
* @see http://schema.org/availabilityStarts | ||
*/ | ||
public function availabilityStarts($availabilityStarts) | ||
{ | ||
return $this->setProperty('availabilityStarts', $availabilityStarts); | ||
} | ||
|
||
/** | ||
* | ||
* | ||
* @param $category | ||
* | ||
* @return static | ||
* | ||
* @see http://schema.org/category | ||
*/ | ||
public function category($category) | ||
{ | ||
return $this->setProperty('category', $category); | ||
} | ||
|
||
/** | ||
* | ||
* | ||
* @param $eligibleRegion | ||
* | ||
* @return static | ||
* | ||
* @see http://schema.org/eligibleRegion | ||
*/ | ||
public function eligibleRegion($eligibleRegion) | ||
{ | ||
return $this->setProperty('eligibleRegion', $eligibleRegion); | ||
} | ||
|
||
/** | ||
* | ||
* | ||
* @param $expectsAcceptanceOf | ||
* | ||
* @return static | ||
* | ||
* @see http://schema.org/expectsAcceptanceOf | ||
*/ | ||
public function expectsAcceptanceOf($expectsAcceptanceOf) | ||
{ | ||
return $this->setProperty('expectsAcceptanceOf', $expectsAcceptanceOf); | ||
} | ||
|
||
/** | ||
* | ||
* | ||
* @param MediaSubscription|MediaSubscription[] $requiresSubscription | ||
* | ||
* @return static | ||
* | ||
* @see http://schema.org/requiresSubscription | ||
*/ | ||
public function requiresSubscription($requiresSubscription) | ||
{ | ||
return $this->setProperty('requiresSubscription', $requiresSubscription); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace Spatie\SchemaOrg; | ||
|
||
/** | ||
* A type of bed. This is used for indicating the bed or beds available in an | ||
* accommodation. | ||
* | ||
* @see http://schema.org/BedType | ||
* | ||
* @mixin \Spatie\SchemaOrg\QualitativeValue | ||
*/ | ||
class BedType extends BaseType | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
namespace Spatie\SchemaOrg; | ||
|
||
/** | ||
* The frequency in MHz and the modulation used for a particular | ||
* BroadcastService. | ||
* | ||
* @see http://schema.org/BroadcastFrequencySpecification | ||
* | ||
* @mixin \Spatie\SchemaOrg\Intangible | ||
*/ | ||
class BroadcastFrequencySpecification extends BaseType | ||
{ | ||
/** | ||
* The frequency in MHz for a particular broadcast. | ||
* | ||
* @param QuantitativeValue|QuantitativeValue[]|float|float[]|int|int[] $broadcastFrequencyValue | ||
* | ||
* @return static | ||
* | ||
* @see http://schema.org/broadcastFrequencyValue | ||
*/ | ||
public function broadcastFrequencyValue($broadcastFrequencyValue) | ||
{ | ||
return $this->setProperty('broadcastFrequencyValue', $broadcastFrequencyValue); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.