-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add return annotation To get rid of this warning: Method "ArrayAccess::offsetGet()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Knp\DictionaryBundle\Dictionary\Traceable" now to avoid errors or add an explicit @return annotation to suppress this message. 1x in ImportYamlTest::testLoadYamlConfig with data set "oberon" from App\Tests\Service * docs: remove $ so gitclip works (#186) * Use dependency injection (#188) getting the dictionary through DI is a better practice that getting it from the container. * Allow Symfony 6.3 * refactor: remove support of php 7.4 * Add Symfony 6.2 to matrix (#183) * chore: drop support of Symfony 6.1 & 6.2 * tests: remove beberlei/assert and replace it by webmozart/assert (already in indirect dependencies) (#185) * fix: add missing Symfony 6.3 supported version constant * refactor: ad type to Dictionary ArrayAccess methods * ci: remove Symfony CLI security check (#194) * refactor: fix cs issues * ci: remove Symfony CLI security check * test: add tests for Symfony 6.3 and php 8.2 --------- Co-authored-by: Tac Tacelosky <[email protected]>
- Loading branch information
1 parent
ead34f5
commit 2cd8ac2
Showing
28 changed files
with
217 additions
and
254 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Rector\Config\RectorConfig; | ||
use Rector\Core\ValueObject\PhpVersion; | ||
use Rector\Set\ValueObject\LevelSetList; | ||
|
||
return static function (RectorConfig $rectorConfig): void { | ||
$rectorConfig | ||
->paths( | ||
[ | ||
__DIR__.'/src', | ||
] | ||
) | ||
; | ||
|
||
$rectorConfig | ||
->phpVersion( | ||
PhpVersion::PHP_80 | ||
) | ||
; | ||
|
||
$rectorConfig | ||
->sets( | ||
[ | ||
LevelSetList::UP_TO_PHP_80, | ||
] | ||
) | ||
; | ||
}; |
This file contains 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
Oops, something went wrong.