Skip to content

Commit d58c1b4

Browse files
authored
Merge pull request #5 from okapi-web/develop
Added @codeCoverageIgnore comments
2 parents 8337e5a + 8f1ed0d commit d58c1b4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Core/Cache/CacheState/TransformedCacheState.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ public function isFresh(): bool
5454
}
5555

5656
if (filemtime($transformerFilePath) > $this->modificationTime) {
57+
// @codeCoverageIgnoreStart
5758
return false;
59+
// @codeCoverageIgnoreEnd
5860
}
5961
}
6062

src/Core/DI.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class DI implements ServiceInterface
3030
private ContainerBuilder $containerBuilder;
3131

3232
/**
33-
* Reg
33+
* Register the dependency injection container.
3434
*
3535
* @return void
3636
*
@@ -93,6 +93,8 @@ public static function get(string $class)
9393
* @param $value
9494
*
9595
* @return void
96+
*
97+
* @codeCoverageIgnore
9698
*/
9799
public static function set(string $class, $value): void
98100
{

0 commit comments

Comments
 (0)