Skip to content

Commit

Permalink
Fix schema.org typo
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzipp committed Apr 28, 2019
1 parent 3a2b647 commit 111d3b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Services/SeoService.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SeoService
*
* @var array
*/
protected $schemeOrgTypes = [];
protected $schemaOrgTypes = [];

/**
* Constructor
Expand Down
6 changes: 3 additions & 3 deletions src/Services/Traits/SchemaOrgTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait SchemaOrgTrait
*/
public function getSchemes(): array
{
return $this->schemeOrgTypes;
return $this->schemaOrgTypes;
}

/**
Expand All @@ -23,7 +23,7 @@ public function getSchemes(): array
*/
public function addSchema(Type $schema): self
{
$this->schemeOrgTypes[] = $schema;
$this->schemaOrgTypes[] = $schema;

return $this;
}
Expand All @@ -35,7 +35,7 @@ public function addSchema(Type $schema): self
*/
public function setSchemes(array $types): self
{
$this->schemeOrgTypes = $types;
$this->schemaOrgTypes = $types;

return $this;
}
Expand Down

0 comments on commit 111d3b0

Please sign in to comment.