Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
arukompas authored and github-actions[bot] committed Sep 3, 2023
1 parent 1bcc3cc commit f7f56c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/LogFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

class LogFile
{
use Concerns\LogFile\HasMetadata;
use Concerns\LogFile\CanCacheData;
use Concerns\LogFile\HasMetadata;

public string $path;
public string $name;
Expand Down
2 changes: 1 addition & 1 deletion src/LogIndex.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

class LogIndex
{
use Concerns\LogIndex\HasMetadata;
use Concerns\LogIndex\CanCacheIndex;
use Concerns\LogIndex\CanFilterIndex;
use Concerns\LogIndex\CanIterateIndex;
use Concerns\LogIndex\CanSplitIndexIntoChunks;
use Concerns\LogIndex\HasMetadata;
use Concerns\LogIndex\PreservesIndexingProgress;

const DEFAULT_CHUNK_SIZE = 50_000;
Expand Down
2 changes: 1 addition & 1 deletion src/Readers/BaseLogReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

abstract class BaseLogReader
{
use Concerns\LogReader\KeepsInstances;
use Concerns\LogReader\KeepsFileHandle;
use Concerns\LogReader\KeepsInstances;

protected LogFile $file;

Expand Down

0 comments on commit f7f56c6

Please sign in to comment.