Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / field / tests / modules / field_test / src / FieldDefaultValueCallbackProvider.php
1 <?php
2
3 namespace Drupal\field_test;
4
5 /**
6  * Helper class for \Drupal\Tests\field\Functional\FieldDefaultValueCallbackTest.
7  */
8 class FieldDefaultValueCallbackProvider {
9
10   /**
11    * Helper callback calculating a default value.
12    */
13   public static function calculateDefaultValue() {
14     return [['value' => 'Calculated default value']];
15   }
16
17 }