π―
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RECTOR RULES AND SHIPPED CODE OVER TIME | |
| ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| β RULE CLASSES β SHIPPED CODE IN MB | |
| rector date β core symfony doctrine phpunit all β rector 3rd party | |
| βββββββββββββββββββββΌββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββ | |
| 0.15.0 2022-12-04 β 416 73 23 42 554 β 5.3 4.7 | |
| 0.15.1 2022-12-14 β 420 73 23 46 562 β 5.3 4.7 | |
| 0.15.2 2022-12-24 β 424 73 23 46 566 β 5.3 4.7 | |
| 0.15.3 2023-01-08 β 425 73 23 46 567 β 5.4 4.7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parameters: | |
| ignoreErrors: | |
| - | |
| message: '#^Method Mautic\\ApiBundle\\Controller\\CommonApiController\:\:processBatchForm\(\) has no return type specified\.$#' | |
| identifier: missingType.return | |
| count: 1 | |
| path: app/bundles/ApiBundle/Controller/CommonApiController.php | |
| - | |
| message: '#^Method Mautic\\ApiBundle\\Controller\\CommonApiController\:\:setCategory\(\) has no return type specified\.$#' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace Utils\PHPStan\Rule; | |
| use PhpParser\Node; | |
| use PHPStan\Analyser\Scope; | |
| use PHPStan\Node\CollectedDataNode; | |
| use PHPStan\Rules\Rule; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace Tests\Unit\Smoke; | |
| use AppKernel; | |
| use PHPUnit\Framework\TestCase; | |
| use ReflectionProperty; | |
| use Symfony\Component\DependencyInjection\ContainerInterface; |