-
-
Notifications
You must be signed in to change notification settings - Fork 160
Closed
Labels
Description
For some reason the rector rule is catching random bits of unrelated code, for example the below sample.
It seems to be a bit random, will attempt to debug further to figure out why, by have narrowed it down to \BenSampo\Enum\Rector\ToNativeRector::inConfiguredClasses returning true when it should not.
---------- begin diff ----------
@@ @@
{
$jwtHeader = explode(' ', $request->header('authorization', ''));
- abort_if(empty($jwtHeader) || count($jwtHeader) !== 2, 400);
+ abort_if((empty($jwtHeader))->value || count($jwtHeader) !== 2, 400);
$jwt = $jwtHeader[1];
----------- end diff -----------
Applied rules:
* ToNativeUsagesRector