From a1e13452aa76823602f7e070bc1f14af3b551494 Mon Sep 17 00:00:00 2001 From: Brady McDonough Date: Thu, 15 Feb 2024 15:46:53 -0700 Subject: [PATCH] snake_case to CamelCase --- src/Factory.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Factory.php b/src/Factory.php index 8bc2ef9..5e832dd 100644 --- a/src/Factory.php +++ b/src/Factory.php @@ -35,12 +35,12 @@ class Factory ) { !is_null($this->session) ? : $this->session = new Session(); - !is_null($this->csrf_clock) ? : $this->csrfClock = new RequestClock(); + !is_null($this->csrfClock) ? : $this->csrfClock = new RequestClock(); !is_null($this->csrf) ? : $this->csrf = new AntiCSRF( $this->session, - $this->csrf_clock + $this->csrfClock ); - !is_null($this->totp_clock) ? : $this->totpClock = new Clock(); + !is_null($this->totpClock) ? : $this->totpClock = new Clock(); !is_null($this->$hash) ? : $this->hash = new HMAC_SHA1(); }