Skip to content

Commit 5f126b3

Browse files
committed
typo
1 parent f67664f commit 5f126b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entities/Patch.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -364,12 +364,12 @@ public function getHashes() {
364364
return $hashes;
365365
}
366366

367-
public function addCIError($hash, $name, $url) {
367+
public function addCIError($hash, $name, $url, $time) {
368368
foreach ($this->ci_failures as $error) {
369369
if ($error->hash == $hash && $error->name == $name)
370370
return;
371371
}
372-
$this->ci_failures->add(new PatchCIError($this, $hash, $name, $url));
372+
$this->ci_failures->add(new PatchCIError($this, $hash, $name, $url, $time));
373373
}
374374

375375
public function set_status($status) {

0 commit comments

Comments
 (0)