Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
raulfraile committed Sep 1, 2014
1 parent 211d19e commit 4e6e200
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use Distill\Format\Zip;

$extractor = new Distill();

$file = new File(__DIR__.'/../tests/files/file_ok.zip', new Zip());
$file = new File(__DIR__ . '/../tests/files/file_ok.zip', new Zip());

$extractor->extract($file, __DIR__ . '/extract');
```
Expand Down
4 changes: 2 additions & 2 deletions examples/extract_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

$extractor = new Distill();

$file = new File(__DIR__.'/../tests/files/file_ok.zip', new Zip());
$file = new File(__DIR__ . '/../tests/files/file_ok.zip', new Zip());

$extractor->extract($file, __DIR__ . '/extract');
$extractor->extract($file, __DIR__ . '/extract');
2 changes: 1 addition & 1 deletion src/Distill/Extractor/Adapter/ZipAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected function extractZipArchive(File $file, $path)
return false;
}

$archive = new ZipArchive;
$archive = new ZipArchive();

$archive->open($file->getPath());
$archive->extractTo($path);
Expand Down
1 change: 0 additions & 1 deletion src/Distill/Extractor/Extractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

namespace Distill\Extractor;

use Distill\Extractor\Adapter;
use Distill\File;

class Extractor implements ExtractorInterface
Expand Down

0 comments on commit 4e6e200

Please sign in to comment.