Skip to content

Commit 09c0a8f

Browse files
committed
Fix lint
1 parent a797f5d commit 09c0a8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

includes/classes/Traits/DisableAfterFailures.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function reset_failures_count() {
6969
* @return boolean
7070
*/
7171
public function should_disable_after_failures() {
72-
$stored = get_transient( $this->get_failures_transient_key() );
72+
$stored = get_transient( $this->get_failures_transient_key() );
7373
$failures = $this->cleanup_failures( is_array( $stored ) ? $stored : [] );
7474
return count( $failures ) > $this->get_max_failures_count();
7575
}

0 commit comments

Comments
 (0)