We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b46b350 commit 6b6d79eCopy full SHA for 6b6d79e
.gitlab-ci.yml
@@ -23,6 +23,7 @@ variables:
23
24
phpstan (custom):
25
extends: phpstan
26
+ allow_failure: false
27
rules:
28
- when: on_success
29
needs:
tests/src/Kernel/TestFieldContext.php
@@ -14,4 +14,25 @@ class TestFieldContext extends FieldContext {
14
*/
15
public function __construct() {}
16
17
+ /**
18
+ * {@inheritdoc}
19
+ */
20
+ public function getContextValue($name) {
21
+ return NULL;
22
+ }
+
+ public function setContextValue($name, $value) {
+ return $this;
30
31
32
33
34
+ public function hasContextValue($name) {
35
+ return FALSE;
36
37
38
}
0 commit comments