• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

nepada / bust-cache / 6342075144

28 Sep 2023 05:04PM UTC coverage: 95.395% (-3.3%) from 98.726%
6342075144

push

github

xificurk
nepada/phpstan-nette-tester version bump

290 of 304 relevant lines covered (95.39%)

0.95 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/BustCache/Caching/CacheItem.php
1
<?php
2
declare(strict_types = 1);
3

4
namespace Nepada\BustCache\Caching;
5

6
final class CacheItem
7
{
8

9
    public function __construct(
1✔
10
        public readonly mixed $value,
11
        /** @var FileDependency[] */
12
        public readonly array $fileDependencies = [],
13
    )
14
    {
15
    }
1✔
16

17
    /**
18
     * @deprecated read the property directly instead
19
     */
20
    public function getValue(): mixed
21
    {
22
        return $this->value;
×
23
    }
24

25
    /**
26
     * @deprecated read the property directly instead
27
     * @return FileDependency[]
28
     */
29
    public function getFileDependencies(): array
30
    {
31
        return $this->fileDependencies;
×
32
    }
33

34
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc