Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / MetaPropertyBase.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * This base plugin allows "property"-style meta tags tobe customized.
7  *
8  * Used with e.g. the Open Graph tags.
9  */
10 abstract class MetaPropertyBase extends MetaNameBase {
11
12   /**
13    * {@inheritdoc}
14    */
15   protected $nameAttribute = 'property';
16
17 }