File tree Expand file tree Collapse file tree
tests/.pest/snapshots/Visual Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 "pestphp/pest-plugin-arch" : " ^4.0.0" ,
2626 "pestphp/pest-plugin-mutate" : " ^4.0.1" ,
2727 "pestphp/pest-plugin-profanity" : " ^4.2.1" ,
28- "phpunit/phpunit" : " ^12.5.3 " ,
28+ "phpunit/phpunit" : " ^12.5.4 " ,
2929 "symfony/process" : " ^7.4.0|^8.0.0"
3030 },
3131 "conflict" : {
3232 "filp/whoops" : " <2.18.3" ,
33- "phpunit/phpunit" : " >12.5.3 " ,
33+ "phpunit/phpunit" : " >12.5.4 " ,
3434 "sebastian/exporter" : " <7.0.0" ,
3535 "webmozart/assert" : " <1.11.0"
3636 },
5858 "pestphp/pest-dev-tools" : " ^4.0.0" ,
5959 "pestphp/pest-plugin-browser" : " ^4.1.1" ,
6060 "pestphp/pest-plugin-type-coverage" : " ^4.0.3" ,
61- "psy/psysh" : " ^0.12.17 "
61+ "psy/psysh" : " ^0.12.18 "
6262 },
6363 "minimum-stability" : " dev" ,
6464 "prefer-stable" : true ,
Original file line number Diff line number Diff line change 44
55use Rector \CodingStyle \Rector \ArrowFunction \ArrowFunctionDelegatingCallToFirstClassCallableRector ;
66use Rector \Config \RectorConfig ;
7+ use Rector \DeadCode \Rector \ClassMethod \RemoveParentDelegatingConstructorRector ;
78use Rector \TypeDeclaration \Rector \ClassMethod \NarrowObjectReturnTypeRector ;
89use Rector \TypeDeclaration \Rector \ClassMethod \ReturnNeverTypeRector ;
910
1617 ReturnNeverTypeRector::class,
1718 ArrowFunctionDelegatingCallToFirstClassCallableRector::class,
1819 NarrowObjectReturnTypeRector::class,
20+ RemoveParentDelegatingConstructorRector::class,
1921 ])
2022 ->withPreparedSets (
2123 deadCode: true ,
Original file line number Diff line number Diff line change 66
77function version (): string
88{
9- return '4.2 .0 ' ;
9+ return '4.3 .0 ' ;
1010}
1111
1212function testDirectory (string $ file = '' ): string
Original file line number Diff line number Diff line change 11
2- Pest Testing Framework 4.2 .0.
2+ Pest Testing Framework 4.3 .0.
33
44 USAGE : pest <file > [options]
55
2727 --pr .... Output to standard output tests with the given pull request number
2828 --pull-request Output to standard output tests with the given pull request number (alias for --pr)
2929 --retry Run non-passing tests first and stop execution upon first error or failure
30+ --dirty ...... Only run tests that have uncommitted changes according to Git
3031 --all .................... Ignore test selection from XML configuration file
3132 --list-suites ................................... List available test suites
3233 --testsuite [name] ......... Only run tests from the specified test suite(s)
Original file line number Diff line number Diff line change 11
2- Pest Testing Framework 4.2 .0.
2+ Pest Testing Framework 4.3 .0.
33
You can’t perform that action at this time.
0 commit comments