Skip to content

Commit

Permalink
fix: resolve phpcs formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pranvinit committed Nov 6, 2024
1 parent 0984bce commit fca3de1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions admin/rt-transcoder-rest-routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,32 +79,32 @@ public function register_routes() {
'callback' => array( $this, 'handle_callback' ),
'permission_callback' => '__return_true',
'args' => array(
'job_id' => array(
'job_id' => array(
'required' => true,
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
),
'file_status' => array(
'file_status' => array(
'required' => true,
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
),
'error_msg' => array(
'error_msg' => array(
'required' => false,
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
),
'job_for' => array(
'job_for' => array(
'required' => false,
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
),
'thumbnail' => array(
'thumbnail' => array(
'required' => false,
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
),
'format' => array(
'format' => array(
'required' => false,
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
Expand Down

0 comments on commit fca3de1

Please sign in to comment.