File "LocalThemeResourceStorage.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResourceStorages/LocalThemeResourceStorage.php
File size: 448 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Automattic\WooCommerce\Blueprint\ResourceStorages;
/**
* Class LocalThemeResourceStorage
*/
class LocalThemeResourceStorage extends LocalPluginResourceStorage {
/**
* The suffix.
*
* @var string The suffix.
*/
protected string $suffix = 'themes';
/**
* Get the supported resource.
*
* @return string The supported resource.
*/
public function get_supported_resource(): string {
return 'self/themes';
}
}