PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
packages
/
seo-helper
/
src
/
Contracts
<?php namespace Botble\SeoHelper\Contracts; use Botble\SeoHelper\Contracts\Entities\TwitterCardContract; interface SeoTwitterContract extends RenderableContract { /** * Set the twitter card instance. * * @param TwitterCardContract $card * @return $this */ public function setCard(TwitterCardContract $card); /** * Set the card type. * * @param string $type * @return $this */ public function setType($type); /** * Set the card site. * * @param string $site * @return $this */ public function setSite($site); /** * Set the card title. * * @param string $title * @return $this */ public function setTitle($title); /** * Set the card description. * * @param string $description * @return $this */ public function setDescription($description); /** * Add image to the card. * * @param string $url * @return $this */ public function addImage($url); /** * Add many meta to the card. * * @param array $meta * @return $this */ public function addMetas(array $meta); /** * Add a meta to the twitter card. * * @param string $name * @param string $content * @return $this */ public function addMeta($name, $content); }
[+]
..
[-] SeoTwitterContract.php
[edit]
[-] SeoHelperContract.php
[edit]
[-] RenderableContract.php
[edit]
[+]
Helpers
[-] SeoOpenGraphContract.php
[edit]
[-] SeoMetaContract.php
[edit]
[+]
Entities