Skip to content

Commit

Permalink
php fix cs
Browse files Browse the repository at this point in the history
 php fix cs
  • Loading branch information
vraja-pro committed May 31, 2024
1 parent ac420f6 commit 476e988
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions src/introductions/application/ai-fix-assessments-upsell.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@

namespace Yoast\WP\SEO\Introductions\Application;

use Introduction_Interface;
use Yoast\WP\SEO\Helpers\Options_Helper;
use Yoast\WP\SEO\Helpers\User_Helper;
use Yoast\WP\SEO\Helpers\Product_Helper;
use Yoast\WP\SEO\Introductions\Application\User_Allowed_Trait;
use Yoast\WP\SEO\Introductions\Domain\Introduction_Interface;
use Yoast\WP\SEO\Helpers\User_Helper;

/**
* Represents the introduction for the AI fix assessments feature.
Expand All @@ -34,7 +33,7 @@ class Ai_Fix_Assessments_Upsell implements Introduction_Interface {
*/
private $user_helper;

/**
/**
* Holds the product helper.
*
* @var Product_Helper
Expand All @@ -46,12 +45,12 @@ class Ai_Fix_Assessments_Upsell implements Introduction_Interface {
*
* @param Options_Helper $options_helper The options helper.
* @param User_Helper $user_helper The user helper.
* @param Product_Helper $product_helper The product helper.
* @param Product_Helper $product_helper The product helper.
*/
public function __construct( Options_Helper $options_helper, User_Helper $user_helper, Product_Helper $product_helper ) {
$this->options_helper = $options_helper;
$this->user_helper = $user_helper;
$this->product_helper = $product_helper;
$this->product_helper = $product_helper;
}

/**
Expand Down Expand Up @@ -90,7 +89,7 @@ public function get_priority(): int {
*/
public function should_show(): bool {

if ( $this->product_helper->is_premium() ) {
if ( $this->product_helper->is_premium() ) {
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function get_priority() {
public function should_show() {

return false;

if ( $this->product_helper->is_premium() ) {
return false;
}
Expand Down

0 comments on commit 476e988

Please sign in to comment.