File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 44
55use Rector \CodeQuality \Rector \PropertyFetch \ExplicitMethodCallOverMagicGetSetRector ;
66use Rector \Config \RectorConfig ;
7- use RectorLaravel \Rector \Assign \CallOnAppArrayAccessToStandaloneAssignRector ;
8- use RectorLaravel \Rector \ClassMethod \AddParentRegisterToEventServiceProviderRector ;
9- use RectorLaravel \Set \LaravelSetList ;
107use Rector \Php74 \Rector \Property \TypedPropertyRector ;
118use Rector \PHPUnit \Set \PHPUnitSetList ;
129use Rector \Set \ValueObject \SetList ;
2219
2320 // Define what rule sets will be applied
2421 $ containerConfigurator ->import (PHPUnitSetList::PHPUNIT_91 );
25- $ containerConfigurator ->import (LaravelSetList::LARAVEL_90 );
2622 $ containerConfigurator ->import (SetList::CODE_QUALITY );
2723 $ containerConfigurator ->import (SetList::DEAD_CODE );
2824 $ containerConfigurator ->import (SetList::PHP_80 );
3228
3329 // register a single rule
3430 $ services ->set (TypedPropertyRector::class);
35- $ services ->set (CallOnAppArrayAccessToStandaloneAssignRector::class);
36- $ services ->set (AddParentRegisterToEventServiceProviderRector::class);
3731};
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ public function testTransactionCreatedThrowListener(): void
145145 {
146146 $ this ->app ->bind (ClockServiceInterface::class, ClockFakeService::class);
147147
148- Event::listen (TransactionCreatedEventInterface::class, TransactionCreatedThrowListener::class, );
148+ Event::listen (TransactionCreatedEventInterface::class, TransactionCreatedThrowListener::class);
149149
150150 /** @var Buyer $buyer */
151151 $ buyer = BuyerFactory::new ()->create ();
You can’t perform that action at this time.
0 commit comments