Automattic\WooCommerce\Internal\ProductFeed\Storage

JsonFileFeed::get_file_pathpublicWC 1.0

{@inheritDoc}

Метод класса: JsonFileFeed{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$JsonFileFeed = new JsonFileFeed();
$JsonFileFeed->get_file_path(): ?string;

Код JsonFileFeed::get_file_path() WC 10.5.2

public function get_file_path(): ?string {
	if ( ! $this->file_completed ) {
		return null;
	}

	return $this->file_path;
}