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

tempestphp / tempest-framework / 14452160432

14 Apr 2025 05:43PM UTC coverage: 80.989% (-0.2%) from 81.217%
14452160432

Pull #1150

github

web-flow
Merge dcd42e1a0 into 0c553d46c
Pull Request #1150: refactor(filesystem): move from package to functions

154 of 200 new or added lines in 10 files covered. (77.0%)

11575 of 14292 relevant lines covered (80.99%)

105.98 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