for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hyde\Framework\Models\Metadata;
use Hyde\Framework\Contracts\MetadataItemContract;
class MetadataItem implements MetadataItemContract, \Stringable
{
public function __construct(protected string $name, protected string $content)
}
public function __toString(): string
return '<meta name="'.e($this->name).'" content="'.e($this->content).'">';
public function uniqueKey(): string
return $this->name;