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

codeigniter4 / CodeIgniter4 / 14569795065

21 Apr 2025 07:55AM UTC coverage: 84.402% (+0.007%) from 84.395%
14569795065

Pull #9528

github

web-flow
Merge 4ad1f19d8 into 3d3ba0512
Pull Request #9528: feat: add Time::addCalendarMonths() function

11 of 11 new or added lines in 1 file covered. (100.0%)

136 existing lines in 21 files now uncovered.

20827 of 24676 relevant lines covered (84.4%)

191.03 hits per line

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

0.0
/system/Session/Exceptions/SessionException.php
1
<?php
2

3
declare(strict_types=1);
4

5
/**
6
 * This file is part of CodeIgniter 4 framework.
7
 *
8
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
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 CodeIgniter\Session\Exceptions;
15

16
use CodeIgniter\Exceptions\FrameworkException;
17

18
class SessionException extends FrameworkException
19
{
20
    /**
21
     * @return static
22
     */
23
    public static function forMissingDatabaseTable()
24
    {
UNCOV
25
        return new static(lang('Session.missingDatabaseTable'));
×
26
    }
27

28
    /**
29
     * @return static
30
     */
31
    public static function forInvalidSavePath(?string $path = null)
32
    {
UNCOV
33
        return new static(lang('Session.invalidSavePath', [$path]));
×
34
    }
35

36
    /**
37
     * @return static
38
     */
39
    public static function forWriteProtectedSavePath(?string $path = null)
40
    {
UNCOV
41
        return new static(lang('Session.writeProtectedSavePath', [$path]));
×
42
    }
43

44
    /**
45
     * @return static
46
     */
47
    public static function forEmptySavepath()
48
    {
UNCOV
49
        return new static(lang('Session.emptySavePath'));
×
50
    }
51

52
    /**
53
     * @return static
54
     */
55
    public static function forInvalidSavePathFormat(string $path)
56
    {
UNCOV
57
        return new static(lang('Session.invalidSavePathFormat', [$path]));
×
58
    }
59

60
    /**
61
     * @deprecated
62
     *
63
     * @return static
64
     *
65
     * @codeCoverageIgnore
66
     */
67
    public static function forInvalidSameSiteSetting(string $samesite)
68
    {
UNCOV
69
        return new static(lang('Session.invalidSameSiteSetting', [$samesite]));
×
70
    }
71
}
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