Property.php

Contains \Drupal\Core\Config\Schema\Sequence.

Namespace

Drupal\Core\Config\Schema

File

drupal/core/lib/Drupal/Core/Config/Schema/Property.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Config\Schema\Sequence.
 */
namespace Drupal\Core\Config\Schema;


/**
 * Generic configuration property.
 */
class Property extends Element {

  /**
   * Implements TypedDataInterface::validate().
   */
  public function validate() {
    return isset($this->value);
  }

}

Classes

Namesort descending Description
Property Generic configuration property.