Skip to content

Commit

Permalink
Apply fixes from StyleCI (rap2hpoutre#279)
Browse files Browse the repository at this point in the history
Co-authored-by: StyleCI Bot <[email protected]>
  • Loading branch information
rap2hpoutre and StyleCIBot authored Jul 13, 2022
1 parent f7b80a2 commit 444069c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/Exportable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

namespace Rap2hpoutre\FastExcel;

use OpenSpout\Common\Entity\Style\Style;
use OpenSpout\Common\Type;
use OpenSpout\Writer\Common\Creator\WriterEntityFactory;
use Generator;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use InvalidArgumentException;
use OpenSpout\Common\Entity\Style\Style;
use OpenSpout\Common\Type;
use OpenSpout\Writer\Common\Creator\WriterEntityFactory;

/**
* Trait Exportable.
Expand Down
4 changes: 2 additions & 2 deletions src/FastExcel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace Rap2hpoutre\FastExcel;

use Generator;
use Illuminate\Support\Collection;
use OpenSpout\Reader\CSV\Reader as CSVReader;
use OpenSpout\Reader\ReaderInterface;
use OpenSpout\Writer\CSV\Writer as CSVWriter;
use OpenSpout\Writer\WriterInterface;
use Generator;
use Illuminate\Support\Collection;

/**
* Class FastExcel.
Expand Down
4 changes: 2 additions & 2 deletions src/Importable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace Rap2hpoutre\FastExcel;

use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use OpenSpout\Common\Type;
use OpenSpout\Reader\Common\Creator\ReaderEntityFactory;
use OpenSpout\Reader\SheetInterface;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;

/**
* Trait Importable.
Expand Down
4 changes: 2 additions & 2 deletions tests/IssuesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Rap2hpoutre\FastExcel\Tests;

use OpenSpout\Reader\Common\Creator\ReaderEntityFactory;
use Illuminate\Support\Collection;
use OpenSpout\Reader\Common\Creator\ReaderEntityFactory;
use Rap2hpoutre\FastExcel\FastExcel;
use Rap2hpoutre\FastExcel\SheetCollection;

Expand Down Expand Up @@ -52,7 +52,7 @@ public function testIssue20()
{
chdir(__DIR__);
$path = (new FastExcel($this->collection()))->export('test2.xlsx');
$this->assertEquals(__DIR__ . DIRECTORY_SEPARATOR . 'test2.xlsx', $path);
$this->assertEquals(__DIR__.DIRECTORY_SEPARATOR.'test2.xlsx', $path);
unlink($path);
}

Expand Down

0 comments on commit 444069c

Please sign in to comment.