You are here

interface ClassBasedInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/ClassBasedInterface.php \Symfony\Component\Validator\ClassBasedInterface

An object backed by a PHP class.

@author Bernhard Schussek <bschussek@gmail.com>

Hierarchy

Expanded class hierarchy of ClassBasedInterface

All classes that implement ClassBasedInterface

Deprecated

since version 2.5, to be removed in 3.0. Use {@link Mapping\ClassMetadataInterface} instead.

4 files declare their use of ClassBasedInterface
ClassMetadataInterface.php in vendor/symfony/validator/Mapping/ClassMetadataInterface.php
ExecutionContext.php in vendor/symfony/validator/Context/ExecutionContext.php
LegacyClassMetadata.php in vendor/symfony/validator/Tests/Fixtures/LegacyClassMetadata.php
PropertyMetadataInterface.php in vendor/symfony/validator/Mapping/PropertyMetadataInterface.php

File

vendor/symfony/validator/ClassBasedInterface.php, line 22

Namespace

Symfony\Component\Validator
View source
interface ClassBasedInterface {

  /**
   * Returns the name of the backing PHP class.
   *
   * @return string The name of the backing class.
   */
  public function getClassName();

}

Members

Namesort descending Modifiers Type Description Overrides
ClassBasedInterface::getClassName public function Returns the name of the backing PHP class. 2