Yoast\WP\SEO\Values\SEMrush
SEMrush_Token::to_array() public Yoast 1.0
Converts the object to an array.
{} Это метод класса: SEMrush_Token{}
Хуков нет.
Возвращает
Массив. The converted object.
Использование
$SEMrush_Token = new SEMrush_Token(); $SEMrush_Token->to_array();
Код SEMrush_Token::to_array() SEMrush Token::to array Yoast 15.6.2
public function to_array() {
return [
'access_token' => $this->access_token,
'refresh_token' => $this->refresh_token,
'expires' => $this->expires,
'has_expired' => $this->has_expired(),
'created_at' => $this->created_at,
];
}