Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed May 24, 2024
1 parent 128210c commit 4f41b33
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

class Logger {

public $time = 0;
public $query_count = 0;
public $query_time = 0;
public $cache_hits = 0;
public $cache_misses = 0;
public $cache_ratio = null;
public $hook_count = 0;
public $hook_time = 0;
public $request_count = 0;
public $request_time = 0;
public $time = 0;
public $query_count = 0;
public $query_time = 0;
public $cache_hits = 0;
public $cache_misses = 0;
public $cache_ratio = null;
public $hook_count = 0;
public $hook_time = 0;
public $request_count = 0;
public $request_time = 0;
private $start_time = null;
private $query_offset = null;
private $cache_hit_offset = null;
Expand All @@ -22,7 +22,7 @@ class Logger {
private $hook_depth = 0;
private $request_start_time = null;

private $definitions = array();
private $definitions = array();

public static $active_loggers = array();

Expand Down

0 comments on commit 4f41b33

Please sign in to comment.