Yoast\WP\SEO\MyYoast_Client\Domain
Resource_Indicator::equals
Returns true when the other indicator has the same canonical value.
Метод класса: Resource_Indicator{}
Хуков нет.
Возвращает
true|false.
Использование
$Resource_Indicator = new Resource_Indicator(); $Resource_Indicator->equals( $other ): bool;
- $other(self) (обязательный)
- The other indicator.
Код Resource_Indicator::equals() Resource Indicator::equals Yoast 28.3
public function equals( self $other ): bool {
return $this->value === $other->value;
}