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

IGNF / validator-api / 22135658047

18 Feb 2026 10:18AM UTC coverage: 53.81% (+0.2%) from 53.594%
22135658047

push

github

web-flow
fix: adding new ways to archive (#83)

* archive 5 days

* fix(test): updateArguments

* fix(test): deleteDataArgument

54 of 113 new or added lines in 16 files covered. (47.79%)

8 existing lines in 4 files now uncovered.

346 of 643 relevant lines covered (53.81%)

2.74 hits per line

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

0.0
/src/Exception/ZipArchiveValidationException.php
1
<?php
2

3
namespace App\Exception;
4

5
use Exception;
6

7
/**
8
 * Exception class for errors raised by ZipArchiveValidator.
9
 */
10
class ZipArchiveValidationException extends \Exception
11
{
12
    /**
13
     * Array of errors in the same format as validator-cli.jar.
14
     *
15
     * @var array
16
     */
17
    protected $errors;
18

19
    public function __construct($errors = [])
20
    {
21
        $this->errors = $errors;
×
NEW
22
        $this->message = 'Zip archive pre-validation failed';
×
23
        parent::__construct();
×
24
    }
25

26
    public function getErrors()
27
    {
28
        return $this->errors;
×
29
    }
30
}
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