Artesaos\SEOTools\TwitterCards::setType PHP Method

setType() public method

public setType ( string $type ) : Artesaos\SEOTools\Contracts\TwitterCards
$type string
return Artesaos\SEOTools\Contracts\TwitterCards
    public function setType($type)
    {
        return $this->addValue('type', $type);
    }

Usage Example

Example #1
0
 public function test_set_type()
 {
     $this->twitterCards->setType('sayajin');
     $expected = '<meta name="twitter:type" content="sayajin" />';
     $this->setRightAssertion($expected);
 }