Skip to content

Commit

Permalink
fixing some formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeProKid committed Sep 25, 2018
1 parent 7677329 commit 9a20a37
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/CLI.php
Original file line number Diff line number Diff line change
Expand Up @@ -410,17 +410,17 @@ public function delete_failed( $args, $assoc_args ) {
private function get_failed_tasks( $queue ) {

$args = [
'post_type' => self::POST_TYPE,
'post_type' => self::POST_TYPE,
'posts_per_page' => 999,
'fields' => 'ids',
'no_found_rows' => true,
'order' => 'ASC',
'orderby' => 'date',
'tax_query' => [
'fields' => 'ids',
'no_found_rows' => true,
'order' => 'ASC',
'orderby' => 'date',
'tax_query' => [
[
'taxonomy' => self::TAXONOMY,
'field' => 'slug',
'terms' => $queue,
'field' => 'slug',
'terms' => $queue,
],
],
];
Expand Down

0 comments on commit 9a20a37

Please sign in to comment.