: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace Yoast\WP\SEO\Actions\Wincher;
use Yoast\WP\SEO\Config\Wincher_Client;
use Yoast\WP\SEO\Exceptions\OAuth\Authentication_Failed_Exception;
use Yoast\WP\SEO\Helpers\Options_Helper;
* Class Wincher_Login_Action
class Wincher_Login_Action {
* The Wincher_Client instance.
* The Options_Helper instance.
protected $options_helper;
* Wincher_Login_Action constructor.
* @param Wincher_Client $client The API client.
* @param Options_Helper $options_helper The options helper.
public function __construct( Wincher_Client $client, Options_Helper $options_helper ) {
$this->options_helper = $options_helper;
* Returns the authorization URL.
* @return object The response object.
public function get_authorization_url() {
'url' => $this->client->get_authorization_url(),
* Authenticates with Wincher to request the necessary tokens.
* @param string $code The authentication code to use to request a token with.
* @param string $website_id The website id associated with the code.
* @return object The response object.
public function authenticate( $code, $website_id ) {
// Code has already been validated at this point. No need to do that again.
$tokens = $this->client->request_tokens( $code );
$this->options_helper->set( 'wincher_website_id', $website_id );
'tokens' => $tokens->to_array(),
} catch ( Authentication_Failed_Exception $e ) {
return $e->get_response();