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

martin-georgiev / postgresql-for-doctrine / c7e2d51967b00119e4da5389d5d13627cf115bfa

17 Mar 2026 04:56PM UTC coverage: 98.316% (+0.05%) from 98.269%
c7e2d51967b00119e4da5389d5d13627cf115bfa

push

github

web-flow
fix: align domain exceptions with consistent patterns (parent class, method naming, PHPDoc, message formatting) (#585)

12 of 16 new or added lines in 7 files covered. (75.0%)

3971 of 4039 relevant lines covered (98.32%)

36.54 hits per line

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

0.0
/src/MartinGeorgiev/Doctrine/DBAL/Types/Exceptions/InvalidPointArrayItemForDatabaseException.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace MartinGeorgiev\Doctrine\DBAL\Types\Exceptions;
6

7
use Doctrine\DBAL\Types\ConversionException;
8

9
/**
10
 * @since 3.1
11
 *
12
 * @author Sébastien Jean <sebastien.jean76@gmail.com>
13
 */
14
class InvalidPointArrayItemForDatabaseException extends ConversionException
15
{
16
    private static function create(string $message, mixed $value): self
×
17
    {
18
        return new self(\sprintf($message, \var_export($value, true)));
×
19
    }
20

NEW
21
    public static function forInvalidType(mixed $value): self
×
22
    {
NEW
23
        return self::create('Array items must be Point instances, %s given', $value);
×
24
    }
25
}
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