for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Novaway\Component\OpenGraph;
class OpenGraphTag implements OpenGraphTagInterface
{
/** @var string */
private $prefix;
private $property;
private $content;
/**
* Constructor
*
* @param string $prefix
* @param string $property
* @param string $content
*/
public function __construct($prefix, $property, $content)
$this->prefix = $prefix;
$this->property = $property;
$this->content = $content;
}
* {@inheritdoc}
public function getPrefix()
return $this->prefix;
public function getProperty()
return $this->property;
public function getContent()
return $this->content;