CYS: Mark several classes as internal (#51069)

* CYS: Mark several classes as internal

* Add changelog file
This commit is contained in:
Albert Juhé Lluveras 2024-08-30 16:59:28 +02:00 committed by GitHub
parent 502b4abe43
commit e589fa87e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
Mark several Customize Your Store PHP classes as internal

View File

@ -7,6 +7,8 @@ use WP_Post;
/**
* Customize Your Store Task
*
* @internal
*/
class CustomizeStore extends Task {
/**

View File

@ -8,6 +8,8 @@ use Automattic\Jetpack\Connection\Utils;
/**
* Class Configuration
*
* @internal
*/
class Configuration {

View File

@ -10,6 +10,8 @@ use WpOrg\Requests\Requests;
/**
* Class Connection
*
* @internal
*/
class Connection {
const TEXT_COMPLETION_API_URL = 'https://public-api.wordpress.com/wpcom/v2/text-completion';

View File

@ -10,6 +10,8 @@ use WP_Error;
* ContentProcessor class.
*
* Process images for content
*
* @internal
*/
class ContentProcessor {

View File

@ -5,6 +5,8 @@ namespace Automattic\WooCommerce\Blocks\AIContent;
/**
* Patterns Dictionary class.
*
* @internal
*/
class PatternsDictionary {
/**

View File

@ -6,6 +6,8 @@ use WP_Error;
/**
* Patterns Helper class.
*
* @internal
*/
class PatternsHelper {
/**

View File

@ -7,6 +7,8 @@ use WP_Error;
/**
* Pattern Images class.
*
* @internal
*/
class UpdatePatterns {

View File

@ -6,6 +6,8 @@ use Automattic\WooCommerce\Blocks\AI\Connection;
use WP_Error;
/**
* Pattern Images class.
*
* @internal
*/
class UpdateProducts {

View File

@ -8,6 +8,8 @@ use Automattic\WooCommerce\Blocks\Images\Pexels;
/**
* AIPatterns class.
*
* @internal
*/
class AIPatterns {
const PATTERNS_AI_DATA_POST_TYPE = 'patterns_ai_data';

View File

@ -5,6 +5,8 @@ use WP_Error;
/**
* PatternsToolkit class.
*
* @internal
*/
class PTKClient {
/**

View File

@ -7,6 +7,8 @@ use WP_Upgrader;
/**
* PTKPatterns class.
*
* @internal
*/
class PTKPatternsStore {
const TRANSIENT_NAME = 'ptk_patterns';

View File

@ -5,6 +5,8 @@ use Automattic\WooCommerce\Admin\Features\Features;
/**
* PatternRegistry class.
*
* @internal
*/
class PatternRegistry {
const SLUG_REGEX = '/^[A-z0-9\/_-]+$/';