Lines Matching refs:breakpoint
21 private $breakpoint;
40 $this->breakpoint = null;
44 $breakpoint = substr($value, $lastIndex + 1);
45 if (array_key_exists($breakpoint, self::$breakpoints)) {
46 $this->breakpoint = $breakpoint;
55 $this->breakpoint = $part;
60 if ($this->breakpoint === null) {
61 $this->breakpoint = null;
66 LogUtility::warning("The breakpoint conditional value format ($value) will be deprecated in the next releases. It should be written ($this->value-$this->breakpoint)");
81 public static function checkValidBreakpoint(string $breakpoint)
83 if (!array_key_exists($breakpoint, self::$breakpoints)) {
84 throw new ExceptionBadArgument("$breakpoint is not a valid breakpoint value");
90 return $this->breakpoint;
100 return self::$breakpoints[$this->breakpoint];