1818/**
1919 * A representation of the inflections used by an inflector.
2020 *
21- * @property-read array $plurals Rules for {@link pluralize()}.
22- * @property-read array $singulars Rules for {@link singularize()}.
21+ * @property-read array $plurals Rules for {@see pluralize()}.
22+ * @property-read array $singulars Rules for {@see singularize()}.
2323 * @property-read array $uncountables Uncountables.
24- * @property-read array $humans Rules for {@link humanize()}.
24+ * @property-read array $humans Rules for {@see humanize()}.
2525 * @property-read array $acronyms Acronyms.
2626 * @property-read string $acronym_regex Acronyms regex.
2727 */
@@ -57,14 +57,14 @@ public static function get(string $locale = INFLECTOR_DEFAULT_LOCALE): Inflectio
5757 }
5858
5959 /**
60- * Rules for {@link pluralize()}.
60+ * Rules for {@see pluralize()}.
6161 *
6262 * @var array<string, string> Where _key_ is a rule and _value_ a replacement.
6363 */
6464 protected $ plurals = [];
6565
6666 /**
67- * Rules for {@link singularize()}.
67+ * Rules for {@see singularize()}.
6868 *
6969 * @var array<string, string> Where _key_ is a rule and _value_ a replacement.
7070 */
@@ -78,7 +78,7 @@ public static function get(string $locale = INFLECTOR_DEFAULT_LOCALE): Inflectio
7878 protected $ uncountables = [];
7979
8080 /**
81- * Rules for {@link humanize()}.
81+ * Rules for {@see humanize()}.
8282 *
8383 * @var array<string, string> Where _key_ is a rule and _value_ a replacement.
8484 */
@@ -99,15 +99,15 @@ public static function get(string $locale = INFLECTOR_DEFAULT_LOCALE): Inflectio
9999 protected $ acronym_regex = '/(?=a)b/ ' ;
100100
101101 /**
102- * Returns the {@link $acronyms}, {@link $acronym_regex}, {@link $plurals}, {@link $singulars},
103- * {@link $uncountables} and {@link $humans} properties.
102+ * Returns the {@see $acronyms}, {@see $acronym_regex}, {@see $plurals}, {@see $singulars},
103+ * {@see $uncountables} and {@see $humans} properties.
104104 *
105105 * @param string $property
106106 *
107107 * @return mixed
108108 *
109- * @throws PropertyNotDefined in attempt to read an inaccessible property. If the {@link PropertyNotDefined}
110- * class is not available a {@link \InvalidArgumentException} is thrown instead.
109+ * @throws PropertyNotDefined in an attempt to read an inaccessible property. If the {@see PropertyNotDefined}
110+ * class is not available a {@see \InvalidArgumentException} is thrown instead.
111111 */
112112 public function __get (string $ property )
113113 {
@@ -127,10 +127,10 @@ public function __get(string $property)
127127 /**
128128 * Specifies a new acronym. An acronym must be specified as it will appear
129129 * in a camelized string. An underscore string that contains the acronym
130- * will retain the acronym when passed to {@link camelize}, {@link humanize}, or
131- * {@link titleize}. A camelized string that contains the acronym will maintain
130+ * will retain the acronym when passed to {@see camelize}, {@see humanize}, or
131+ * {@see titleize}. A camelized string that contains the acronym will maintain
132132 * the acronym when titleized or humanized, and will convert the acronym
133- * into a non-delimited single lowercase word when passed to {@link underscore}.
133+ * into a non-delimited single lowercase word when passed to {@see underscore}.
134134 *
135135 * <pre>
136136 * $this->acronym('HTML');
@@ -153,7 +153,7 @@ public function __get(string $property)
153153 * $this->underscore('HTTPS'); // 'https'
154154 * </pre>
155155 *
156- * Note: Acronyms that are passed to {@link pluralize} will no longer be
156+ * Note: Acronyms that are passed to {@see pluralize} will no longer be
157157 * recognized, since the acronym will not occur as a delimited unit in the
158158 * pluralized result. To work around this, you must specify the pluralized
159159 * form as an acronym as well:
@@ -166,7 +166,7 @@ public function __get(string $property)
166166 * $this->camelize($this->pluralize('api')); // 'APIs'
167167 * </pre>
168168 *
169- * {@link acronym} may be used to specify any word that contains an acronym or
169+ * {@see acronym} may be used to specify any word that contains an acronym or
170170 * otherwise needs to maintain a non-standard capitalization. The only
171171 * restriction is that the word must begin with a capital letter.
172172 *
0 commit comments