scratch – Blame information for rev 87

Subversion Repositories:
Rev:
Rev Author Line No. Line
87 office 1 <?php
2  
3 namespace Fusonic\OpenGraph\Objects;
4  
5 /**
6 * This object type represents a website. It is a simple object type and uses only common Open Graph properties. For
7 * specific pages within a website, the article object type should be used.
8 *
9 * https://developers.facebook.com/docs/reference/opengraph/object-type/website/
10 */
11 class Website extends ObjectBase
12 {
13 const TYPE = "website";
14  
15 public function __construct()
16 {
17 parent::__construct();
18  
19 $this->type = self::TYPE;
20 }
21 }