JezK
Edit File: CouldNotDecodeBasicAuthenticationToken.php
<?php declare(strict_types=1); namespace Inpsyde\BackWPup\Infrastructure\Http\Authentication\Exception; final class CouldNotDecodeBasicAuthenticationToken extends \RuntimeException { public static function withToken(string $token): self { return new self( sprintf( __('Could not decode basic authentication token %s', 'backwpup'), $token ) ); } }