/
home
/
techb158
/
immovalet.com
/
vendor
/
botble
/
seo-helper
/
src
/
Contracts
/
Helpers
/
/home/techb158/immovalet.com/vendor/botble/seo-helper/src/Contracts/Helpers
mkdir
upload
Name
Size
Mode
Actions
MetaContract.php
960
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/botble/seo-helper/src/Contracts/Helpers/MetaContract.php
(960B)
<?php namespace Botble\SeoHelper\Contracts\Helpers; use Botble\SeoHelper\Contracts\RenderableContract; interface MetaContract extends RenderableContract { /** * Get the meta name. * * @return string */ public function key(); /** * Set the meta prefix name. * * @param string $prefix * @return $this */ public function setPrefix($prefix); /** * Set the meta property name. * * @param string $nameProperty * @return $this */ public function setNameProperty($nameProperty); /** * Make Meta instance. * * @param string $name * @param string $content * @param string $propertyName * @param string $prefix * @return $this */ public static function make($name, $content, $propertyName = 'name', $prefix = ''); /** * Check if meta is valid. * * @return bool */ public function isValid(); }
Save