diff --git a/inc/class-plugin.php b/inc/class-plugin.php
index 99d07e8547e3ed2cbbc1814d614eb57cf1758537..465a4f7e100b58e617f1bbf46e1443c4ed7b2ae0 100644
--- a/inc/class-plugin.php
+++ b/inc/class-plugin.php
@@ -41,22 +41,6 @@ class Plugin {
 	 */
 	private const SHORTCODE_TAG = 'eth_anchor_fm';
 
-	public function __get( $name ): ?string {
-		if ( 'url_regex' === $name ) {
-			return self::OEMBED_FORMAT;
-		}
-
-		return null;
-	}
-
-	public function __set( string $name, string $value ): bool {
-		return false;
-	}
-
-	public function __isset( $name ): bool {
-		return 'url_regex' === $name;
-	}
-
 	/**
 	 * Register hooks.
 	 *