Skip to content

Commit

Permalink
fix action arg num
Browse files Browse the repository at this point in the history
  • Loading branch information
leonstafford committed Nov 28, 2020
1 parent 672659b commit e4f9a31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function run() : void {
'wp2static_deploy',
[ $this, 'deploy' ],
15,
1
2
);

add_action(
Expand Down
2 changes: 1 addition & 1 deletion wp2static-addon-netlify.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
require WP2STATIC_NETLIFY_PATH . 'vendor/autoload.php';
}

function run_wp2static_addon_netlify() {
function run_wp2static_addon_netlify() : void {
$controller = new WP2StaticNetlify\Controller();
$controller->run();
}
Expand Down

0 comments on commit e4f9a31

Please sign in to comment.