Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / breakpoint / src / BreakpointInterface.php
1 <?php
2
3 namespace Drupal\breakpoint;
4
5 /**
6  * Interface for Breakpoint plugins.
7  */
8 interface BreakpointInterface {
9
10   /**
11    * Returns the translated label.
12    *
13    * @return string
14    *   The translated label.
15    */
16   public function getLabel();
17
18   /**
19    * Returns the weight.
20    *
21    * @return int
22    *   The weight.
23    */
24   public function getWeight();
25
26   /**
27    * Returns the media query.
28    *
29    * @return string
30    *   The media query.
31    */
32   public function getMediaQuery();
33
34   /**
35    * Returns the multipliers.
36    *
37    * @return array
38    *   The multipliers.
39    */
40   public function getMultipliers();
41
42   /**
43    * Returns the provider.
44    *
45    * @return string
46    *   The provider.
47    */
48   public function getProvider();
49
50   /**
51    * Returns the breakpoint group.
52    *
53    * @return string
54    *   The breakpoint group.
55    */
56   public function getGroup();
57
58 }