FixtureDeprecatedClass.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\deprecation_test\DeprecationFile
core/modules/system/tests/modules/deprecation_test/src/Deprecation/FixtureDeprecatedClass.phpView source
<?php
namespace Drupal\deprecation_test\Deprecation;
@trigger_error(__NAMESPACE__ . '\\FixtureDeprecatedClass is deprecated.', E_USER_DEPRECATED);
/**
* Fixture class for use by DrupalStandardsListenerDeprecationTest.
*
* This class is arbitrarily deprecated in order to test the deprecation error
* handling properties of DrupalStandardsListener.
*
* @see \Drupal\Tests\Core\Listeners\DrupalStandardsListenerDeprecationTest
* @see \Drupal\Tests\Listeners\DrupalStandardsListener::endTest()
*/
class FixtureDeprecatedClass {
/**
* Returns a known value.
*
* @return string
* A known return value.
*/
public function testFunction() {
return 'test';
}
}
Classes
Name | Description |
---|---|
FixtureDeprecatedClass | Fixture class for use by DrupalStandardsListenerDeprecationTest. |