65aea782506b1228a253603a71a8532a2cd1fef0
[yaffs-website] / web / core / modules / system / tests / modules / deprecation_test / src / Deprecation / FixtureDeprecatedClass.php
1 <?php
2
3 namespace Drupal\deprecation_test\Deprecation;
4
5 @trigger_error(__NAMESPACE__ . '\FixtureDeprecatedClass is deprecated.', E_USER_DEPRECATED);
6
7 /**
8  * Fixture class for use by DrupalStandardsListenerDeprecationTest.
9  *
10  * This class is arbitrarily deprecated in order to test the deprecation error
11  * handling properties of DrupalStandardsListener.
12  *
13  * @see \Drupal\Tests\Core\Listeners\DrupalStandardsListenerDeprecationTest
14  * @see \Drupal\Tests\Listeners\DrupalStandardsListener::endTest()
15  */
16 class FixtureDeprecatedClass {
17
18   /**
19    * Returns a known value.
20    *
21    * @return string
22    *   A known return value.
23    */
24   public function testFunction() {
25     return 'test';
26   }
27
28 }