PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | src/models/seo-links.php +4 -4 18.228.5 View file →
@@ -26,9 +26,9 @@
26 26 * Indicates that the link is external.
27 27 *
28 28 * @var string
29 29 */
30 - const TYPE_INTERNAL = 'internal';
30 + public const TYPE_INTERNAL = 'internal';
31 31
32 32 /**
33 33 * Indicates that the link is internal.
34 34 *
@@ -33,9 +33,9 @@
33 33 * Indicates that the link is internal.
34 34 *
35 35 * @var string
36 36 */
37 - const TYPE_EXTERNAL = 'external';
37 + public const TYPE_EXTERNAL = 'external';
38 38
39 39 /**
40 40 * Indicates the link is an internal image.
41 41 *
@@ -40,9 +40,9 @@
40 40 * Indicates the link is an internal image.
41 41 *
42 42 * @var string
43 43 */
44 - const TYPE_INTERNAL_IMAGE = 'image-in';
44 + public const TYPE_INTERNAL_IMAGE = 'image-in';
45 45
46 46 /**
47 47 * Indicates the link is an external image.
48 48 *
@@ -47,9 +47,9 @@
47 47 * Indicates the link is an external image.
48 48 *
49 49 * @var string
50 50 */
51 - const TYPE_EXTERNAL_IMAGE = 'image-ex';
51 + public const TYPE_EXTERNAL_IMAGE = 'image-ex';
52 52
53 53 /**
54 54 * Holds the parsed URL. May not be set.
55 55 *