Skip to content

Commit

Permalink
fix(class-duouniversal-wordpressplugin): remove duplicate require_onc…
Browse files Browse the repository at this point in the history
…e statements
  • Loading branch information
michael-sumner committed Apr 26, 2024
1 parent 8df6fd2 commit 6bb87f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions class-duouniversal-wordpressplugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
exit; // Exit if accessed directly.
}

require_once plugin_dir_path( __FILE__ ) . require_once 'class-duouniversal-settings.php';
require_once plugin_dir_path( __FILE__ ) . require_once 'class-duouniversal-utilities.php';
require_once plugin_dir_path( __FILE__ ) . require_once 'vendor/autoload.php';
require_once plugin_dir_path( __FILE__ ) . 'class-duouniversal-settings.php';
require_once plugin_dir_path( __FILE__ ) . 'class-duouniversal-utilities.php';
require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';

use Duo\DuoUniversal\Client;

Expand Down

0 comments on commit 6bb87f6

Please sign in to comment.