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

PHP-Alchemist / coreFiles / 15423302022

03 Jun 2025 04:58PM UTC coverage: 92.411%. First build
15423302022

Pull #9

github

druid628
CS Fixes
Pull Request #9: [Release] v3.0.0

144 of 175 new or added lines in 16 files covered. (82.29%)

548 of 593 relevant lines covered (92.41%)

4.95 hits per line

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

75.0
/src/Exception/HashTableFullException.php
1
<?php
2

3
namespace PHPAlchemist\Exception;
4

5
/**
6
 * When a HashTable has reached the fixed limit and an attempt to add data has been made.
7
 */
8
class HashTableFullException extends \Exception
9
{
10
    const ERROR_UNMATCHED_CLASS = 'HashTable data has reached defined limit.';
11

12
    public function __construct(
2✔
13
        $message = self::ERROR_UNMATCHED_CLASS,
14
        $code = 0,
15
        $previous = null
16
    ) {
17
        if (empty($message)) {
2✔
18
            $this->message = self::ERROR_UNMATCHED_CLASS;
×
19
        }
20

21
        parent::__construct($message, $code, $previous);
2✔
22
    }
23
}
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