We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SelectorComponent
1 parent 21bb0eb commit 2eb2b79Copy full SHA for 2eb2b79
1 file changed
src/Property/Selector/SelectorComponent.php
@@ -0,0 +1,23 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
5
+namespace Sabberworm\CSS\Property\Selector;
6
7
+interface SelectorComponent
8
+{
9
+ /**
10
+ * @return non-empty-string
11
+ */
12
+ public function getStringValue(): string;
13
14
15
+ * @param non-empty-string $value
16
17
+ public function setStringValue(string $value): void;
18
19
20
+ * @return int<0, max>
21
22
+ public function getSpecificity(): int;
23
+}
0 commit comments