Skip to content

Commit

Permalink
fix: phpcs issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pronob1010 committed Dec 30, 2024
1 parent fd205f6 commit 3e92c68
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions includes/REST/StoreSettingControllerV2.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function register_routes() {
'permission_callback' => [ $this, 'get_settings_permission_callback' ],
'args' => [
'group_id' => [
'description' => __( 'Unique identifier for the settings group.', 'dokan' ),
'description' => __( 'Unique identifier for the settings group.', 'dokan-lite' ),
'type' => 'string',
'required' => true,
],
Expand All @@ -76,12 +76,12 @@ public function register_routes() {
'permission_callback' => [ $this, 'get_settings_permission_callback' ],
'args' => [
'group_id' => [
'description' => __( 'Unique identifier for the settings group.', 'dokan' ),
'description' => __( 'Unique identifier for the settings group.', 'dokan-lite' ),
'type' => 'string',
'required' => true,
],
'id' => [
'description' => __( 'Unique identifier for the setting.', 'dokan' ),
'description' => __( 'Unique identifier for the setting.', 'dokan-lite' ),
'type' => 'string',
'required' => true,
],
Expand All @@ -105,17 +105,17 @@ public function register_routes() {
'permission_callback' => [ $this, 'get_settings_permission_callback' ],
'args' => [
'group_id' => [
'description' => __( 'Unique identifier for the settings group.', 'dokan' ),
'description' => __( 'Unique identifier for the settings group.', 'dokan-lite' ),
'type' => 'string',
'required' => true,
],
'parent_id' => [
'description' => __( 'Unique identifier for the parent setting.', 'dokan' ),
'description' => __( 'Unique identifier for the parent setting.', 'dokan-lite' ),
'type' => 'string',
'required' => true,
],
'id' => [
'description' => __( 'Unique identifier for the setting field.', 'dokan' ),
'description' => __( 'Unique identifier for the setting field.', 'dokan-lite' ),
'type' => 'string',
'required' => true,
],
Expand Down

0 comments on commit 3e92c68

Please sign in to comment.