Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ignore a couple unused parameters
  • Loading branch information
danielbachhuber committed Sep 1, 2023
commit b35ad87f204a4ea10cfed8612bde2290a7fc04eb
4 changes: 2 additions & 2 deletions src/User_Application_Password_Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ public function update( $args, $assoc_args ) {
* @param array $assoc_args Associative array of associative arguments.
* @throws ExitException If the application password could not be created.
*/
public function record_usage( $args, $assoc_args ) {
public function record_usage( $args, $assoc_args ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed
$args = $this->replace_login_with_user_id( $args );

list( $user_id, $uuid ) = $args;
Expand Down Expand Up @@ -497,7 +497,7 @@ public function delete( $args, $assoc_args ) {
* @param array $assoc_args Associative array of associative arguments.
* @throws ExitException If the application password could not be created.
*/
public function exists( $args, $assoc_args ) {
public function exists( $args, $assoc_args ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed
$args = $this->replace_login_with_user_id( $args );

list( $user_id, $app_name ) = $args;
Expand Down