Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
A5hleyRich committed Apr 20, 2018
1 parent 73632c4 commit 4cc44fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
/**
* Return Queue instance.
*
* @param string|null $connection
* @param string $connection
*
* @return Queue
*/
function wp_queue( $connection = null ) {
if(is_null($connection)) {
function wp_queue( $connection = '' ) {
if( empty( $connection ) ) {
$connection = apply_filters( 'wp_queue_default_connection', 'database' );
}

Expand Down

0 comments on commit 4cc44fa

Please sign in to comment.