Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
juampi92 authored and github-actions[bot] committed Aug 28, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 843b8d4 commit c8dad82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SEOData.php
Original file line number Diff line number Diff line change
@@ -22,14 +22,14 @@ public function __construct(

public function title(): ?string
{
return $this->memo('title', fn() => $this->html->grabTextFrom('//html//head//title'));
return $this->memo('title', fn () => $this->html->grabTextFrom('//html//head//title'));
}

public function description(): ?string
{
return $this->memo(
'description',
fn() => $this->html->grabAttributeFrom('//html//head//meta[@name="description"]', 'content')
fn () => $this->html->grabAttributeFrom('//html//head//meta[@name="description"]', 'content')
);
}

0 comments on commit c8dad82

Please sign in to comment.