
| Current Path : /var/www/html_old/12park.002/web/themes/bootstrap/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html_old/12park.002/web/themes/bootstrap/src/DeprecatedInterface.php |
<?php
namespace Drupal\bootstrap;
/**
* Interface DeprecatedInterface.
*/
interface DeprecatedInterface {
/**
* The reason for deprecation.
*
* @return \Drupal\Core\StringTranslation\TranslatableMarkup
* A TranslatableMarkup object.
*/
public function getDeprecatedReason();
/**
* The code that replaces the deprecated functionality.
*
* @return string|false
* The replacement code location or FALSE if there is no replacement.
*/
public function getDeprecatedReplacement();
/**
* The version this was deprecated in.
*
* @return string
* A version string.
*/
public function getDeprecatedVersion();
}