Skip to content

Commit

Permalink
Remove redundant use statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mmikkel committed Mar 27, 2024
1 parent 25ed853 commit f4ce35b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/helpers/CpFieldInspectHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
use craft\commerce\elements\Product;
use craft\helpers\Html;
use craft\helpers\UrlHelper;
use craft\models\EntryType;

use yii\base\InvalidConfigException;

Expand Down Expand Up @@ -45,7 +44,7 @@ public static function getRedirectUrl(?string $url = null): string
$url = "edit/$globalSet->id?site=$siteHandle";
}
}
return Craft::$app->getSecurity()->hashData($url);
return Craft::$app->getSecurity()->/** @scrutinizer ignore-call */hashData($url);
}

/**
Expand Down

0 comments on commit f4ce35b

Please sign in to comment.