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.
2 parents 8337e5a + 8f1ed0d commit d58c1b4Copy full SHA for d58c1b4
src/Core/Cache/CacheState/TransformedCacheState.php
@@ -54,7 +54,9 @@ public function isFresh(): bool
54
}
55
56
if (filemtime($transformerFilePath) > $this->modificationTime) {
57
+ // @codeCoverageIgnoreStart
58
return false;
59
+ // @codeCoverageIgnoreEnd
60
61
62
src/Core/DI.php
@@ -30,7 +30,7 @@ class DI implements ServiceInterface
30
private ContainerBuilder $containerBuilder;
31
32
/**
33
- * Reg
+ * Register the dependency injection container.
34
*
35
* @return void
36
@@ -93,6 +93,8 @@ public static function get(string $class)
93
* @param $value
94
95
96
+ *
97
+ * @codeCoverageIgnore
98
*/
99
public static function set(string $class, $value): void
100
{
0 commit comments