Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / config_translation / src / Controller / ConfigTranslationEntityListBuilderInterface.php
1 <?php
2
3 namespace Drupal\config_translation\Controller;
4
5 use Drupal\Core\Entity\EntityListBuilderInterface;
6
7 /**
8  * Defines an interface for configuration translation entity list builders.
9  */
10 interface ConfigTranslationEntityListBuilderInterface extends EntityListBuilderInterface {
11
12   /**
13    * Sorts an array by value.
14    *
15    * @param array $a
16    *   First item for comparison.
17    * @param array $b
18    *   Second item for comparison.
19    *
20    * @return int
21    *   The comparison result for uasort().
22    */
23   public function sortRows($a, $b);
24
25   /**
26    * Sets the config translation mapper definition.
27    *
28    * @param mixed $mapper_definition
29    *   The plugin definition of the config translation mapper.
30    *
31    * @return $this
32    */
33   public function setMapperDefinition($mapper_definition);
34
35 }