Skip to content

Commit

Permalink
Updated code style
Browse files Browse the repository at this point in the history
  • Loading branch information
eusonlito authored Sep 20, 2021
1 parent 5c1f5ac commit 6920608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Eusonlito/LaravelMeta/Tags/MetaProduct.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static function tagDefault($key, $values)

$html = '';

foreach($values as $key => $value) {
foreach ($values as $key => $value) {
if (in_array($key, self::$available, true)) {
$html .= '<meta property="'.self::propertyTag($key).'" content="'.$value.'" />';
}
Expand All @@ -24,7 +24,7 @@ public static function tagDefault($key, $values)
return $html;
}

public static function propertyTag ($key)
public static function propertyTag($key)
{
$tag = 'product:';

Expand Down

0 comments on commit 6920608

Please sign in to comment.