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

tempestphp / tempest-framework / 14666465784

25 Apr 2025 02:04PM UTC coverage: 80.0% (-0.2%) from 80.219%
14666465784

Pull #1150

github

web-flow
Merge e4bfa4ad5 into be8067395
Pull Request #1150: refactor(filesystem): move from package to functions

155 of 202 new or added lines in 10 files covered. (76.73%)

11812 of 14765 relevant lines covered (80.0%)

105.95 hits per line

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

50.0
/src/Tempest/Support/src/Filesystem/Exceptions/NotReadableException.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace Tempest\Support\Filesystem\Exceptions;
6

7
use Exception;
8

9
final class NotReadableException extends Exception implements FilesystemException
10
{
11
    public static function forFile(string $file): NotReadableException
2✔
12
    {
13
        return new self(sprintf('File "%s" is not readable.', $file));
2✔
14
    }
15

NEW
16
    public static function forDirectory(string $directory): NotReadableException
×
17
    {
NEW
18
        return new self(sprintf('Directory "%s" is not readable.', $directory));
×
19
    }
20
}
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