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

tempestphp / tempest-framework / 14729611330

29 Apr 2025 11:00AM UTC coverage: 80.654%. First build
14729611330

Pull #1150

github

web-flow
Merge 7c1d15bb8 into 76d70c153
Pull Request #1150: refactor(filesystem): move from package to functions

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

12945 of 16050 relevant lines covered (80.65%)

101.87 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

© 2025 Coveralls, Inc