Skip to content

Commit

Permalink
Merge pull request #33 from creative-commoners/pulls/1.0/httprequest-…
Browse files Browse the repository at this point in the history
…args

FIX Ensure required HTTPRequest arguments are provided
  • Loading branch information
robbieaverill committed May 17, 2018
2 parents af15299 + 268dae3 commit 36d92eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/jobs/CheckComposerSecurityJob.php
Expand Up @@ -52,7 +52,7 @@ public function setup()
public function process()
{
// run the task
$this->task->run(new SS_HTTPRequest());
$this->task->run(new SS_HTTPRequest('GET', '/'));

// mark job as completed
$this->isComplete = true;
Expand Down

0 comments on commit 36d92eb

Please sign in to comment.