You are here

Property.php in Realistic Dummy Content 8

Define autoload class.

File

api/src/attributes/Property.php
View source
<?php

/**
 * @file
 *
 * Define autoload class.
 */
namespace Drupal\realistic_dummy_content_api\attributes;

use Drupal\realistic_dummy_content_api\attributes\Attribute;

// use Drupal\realistic_dummy_content_api\attributes\Property;

/**
 * Represents properties like the user picture or node titles.
 */
abstract class Property extends Attribute {

  /**
   * {@inheritdoc}
   */
  function GetType() {
    return 'property';
  }

}

Classes

Namesort descending Description
Property Represents properties like the user picture or node titles.