for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mpyw\OpenGraph\Objects;
/**
* This object type represents a website. It is a simple object type and uses only common Open Graph properties. For
* specific pages within a website, the article object type should be used.
*
* https://developers.facebook.com/docs/reference/opengraph/object-type/website/
*/
class Website extends ObjectBase
{
public const TYPE = 'website';
* Website constructor.
public function __construct()
$this->type = static::TYPE;
}