PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
packages
/
seo-helper
/
src
/
Contracts
/
Entities
<?php namespace Botble\SeoHelper\Contracts\Entities; use Botble\SeoHelper\Contracts\RenderableContract; interface DescriptionContract extends RenderableContract { /** * Get raw description content. * * @return string */ public function getContent(); /** * Get description content. * * @return string */ public function get(); /** * Set description content. * * @param string $content * @return $this */ public function set($content); /** * Get description max length. * * @return int */ public function getMax(); /** * Set description max length. * * @param int $max * @return $this */ public function setMax($max); /** * Make a description instance. * * @param string $content * @param int $max * @return $this */ public static function make($content, $max = 155); }
[-] TitleContract.php
[edit]
[+]
..
[-] DescriptionContract.php
[edit]
[-] TwitterCardContract.php
[edit]
[-] WebmastersContract.php
[edit]
[-] MetaCollectionContract.php
[edit]
[-] MiscTagsContract.php
[edit]
[-] AnalyticsContract.php
[edit]
[-] OpenGraphContract.php
[edit]