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

PHP-CS-Fixer / PHP-CS-Fixer / 3721300657

pending completion
3721300657

push

github

GitHub
minor: Follow PSR12 ordered imports in Symfony ruleset (#6712)

9 of 9 new or added lines in 2 files covered. (100.0%)

22674 of 24281 relevant lines covered (93.38%)

39.08 hits per line

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

0.0
/src/FixerConfiguration/FixerOptionInterface.php
1
<?php
2

3
declare(strict_types=1);
4

5
/*
6
 * This file is part of PHP CS Fixer.
7
 *
8
 * (c) Fabien Potencier <fabien@symfony.com>
9
 *     Dariusz RumiƄski <dariusz.ruminski@gmail.com>
10
 *
11
 * This source file is subject to the MIT license that is bundled
12
 * with this source code in the file LICENSE.
13
 */
14

15
namespace PhpCsFixer\FixerConfiguration;
16

17
interface FixerOptionInterface
18
{
19
    public function getName(): string;
20

21
    public function getDescription(): string;
22

23
    public function hasDefault(): bool;
24

25
    /**
26
     * @return mixed
27
     *
28
     * @throws \LogicException when no default value is defined
29
     */
30
    public function getDefault();
31

32
    /**
33
     * @return null|list<string>
34
     */
35
    public function getAllowedTypes(): ?array;
×
36

37
    /**
38
     * @return null|list<(callable(mixed): bool)|null|scalar>
39
     */
40
    public function getAllowedValues(): ?array;
×
41

42
    public function getNormalizer(): ?\Closure;
×
43
}
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

© 2025 Coveralls, Inc