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

daycry / auth / 22527357078

28 Feb 2026 07:22PM UTC coverage: 63.267% (+0.7%) from 62.568%
22527357078

push

github

daycry
Remove PHP 8.1 from PHPUnit CI matrix

Update .github/workflows/phpunit.yml to drop PHP 8.1 from the test matrix. CI will now run PHPUnit only on PHP 8.2 and 8.3, reducing the matrix to current supported versions.

3064 of 4843 relevant lines covered (63.27%)

41.52 hits per line

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

50.0
/src/Exceptions/AuthorizationException.php
1
<?php
2

3
declare(strict_types=1);
4

5
/**
6
 * This file is part of Daycry Auth.
7
 *
8
 * (c) Daycry <daycry9@proton.me>
9
 *
10
 * For the full copyright and license information, please view
11
 * the LICENSE file that was distributed with this source code.
12
 */
13

14
namespace Daycry\Auth\Exceptions;
15

16
use CodeIgniter\Exceptions\RuntimeException;
17

18
class AuthorizationException extends RuntimeException
19
{
20
    /**
21
     * Whether the request was authorised.  Stored as an instance property
22
     * to avoid the race condition that a static property would introduce in
23
     * concurrent requests.
24
     */
25
    public bool $authorized = true;
26

27
    /**
28
     * HTTP 403 Forbidden — authenticated but not permitted.
29
     */
30
    protected $code = 403;
31

32
    public static function forUnknownGroup(string $group): self
3✔
33
    {
34
        return new self(lang('Auth.unknownGroup', [$group]));
3✔
35
    }
36

37
    public static function forUnknownPermission(string $permission): self
3✔
38
    {
39
        return new self(lang('Auth.unknownPermission', [$permission]));
3✔
40
    }
41

42
    public static function forUnauthorized(): self
×
43
    {
44
        $e             = new self(lang('Auth.notEnoughPrivilege'));
×
45
        $e->authorized = false;
×
46

47
        return $e;
×
48
    }
49
}
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