Skip to content

Commit

Permalink
Simplify TiqrContext methods
Browse files Browse the repository at this point in the history
  • Loading branch information
MKodde committed Jan 23, 2024
1 parent 1501b03 commit 82d6578
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Features/Context/TiqrContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,7 @@ public function iScanTheTiqrAuthenticationQrcode(): void
*/
public function clearTheLogs(): void
{
$logger = $this->fileLogger;
$logger->cleanLogs();
$this->fileLogger->cleanLogs();
}

/**
Expand All @@ -419,8 +418,7 @@ public function clearTheLogs(): void
*/
public function theLogsAre(TableNode $table): void
{
$logger = $this->fileLogger;
$logs = $logger->cleanLogs();
$logs = $this->fileLogger->cleanLogs();
$rows = array_values($table->getColumnsHash());

try {
Expand Down

0 comments on commit 82d6578

Please sign in to comment.