@@ -53,8 +53,7 @@ |
||
| 53 | 53 | * @class DocxExtractorInterface |
| 54 | 54 | * @package Platine\DocxTemplate |
| 55 | 55 | */ |
| 56 | -interface DocxExtractorInterface |
|
| 57 | -{ |
|
| 56 | +interface DocxExtractorInterface { |
|
| 58 | 57 | |
| 59 | 58 | /** |
| 60 | 59 | * Extract an archive to the given destination |
@@ -50,8 +50,7 @@ discard block |
||
| 50 | 50 | * @class ArchiveInfo |
| 51 | 51 | * @package Platine\DocxTemplate\Archive |
| 52 | 52 | */ |
| 53 | -class ArchiveInfo |
|
| 54 | -{ |
|
| 53 | +class ArchiveInfo { |
|
| 55 | 54 | /** |
| 56 | 55 | * The archive name |
| 57 | 56 | * @var string |
@@ -90,8 +89,7 @@ discard block |
||
| 90 | 89 | * @param int $mtime |
| 91 | 90 | * @param int $crc |
| 92 | 91 | */ |
| 93 | - public function __construct(string $name, int $index, int $size, int $mtime, int $crc) |
|
| 94 | - { |
|
| 92 | + public function __construct(string $name, int $index, int $size, int $mtime, int $crc) { |
|
| 95 | 93 | $this->name = $name; |
| 96 | 94 | $this->index = $index; |
| 97 | 95 | $this->size = $size; |
@@ -57,8 +57,7 @@ discard block |
||
| 57 | 57 | * @class Zip |
| 58 | 58 | * @package Platine\DocxTemplate\Archive |
| 59 | 59 | */ |
| 60 | -class Zip implements DocxExtractorInterface |
|
| 61 | -{ |
|
| 60 | +class Zip implements DocxExtractorInterface { |
|
| 62 | 61 | /** |
| 63 | 62 | * The zip archive instance |
| 64 | 63 | * @var ZipArchive |
@@ -69,8 +68,7 @@ discard block |
||
| 69 | 68 | * Create new instance |
| 70 | 69 | * @param ZipArchive|null $zip |
| 71 | 70 | */ |
| 72 | - public function __construct(?ZipArchive $zip = null) |
|
| 73 | - { |
|
| 71 | + public function __construct(?ZipArchive $zip = null) { |
|
| 74 | 72 | $this->zip = $zip ?? new ZipArchive(); |
| 75 | 73 | } |
| 76 | 74 | |
@@ -52,8 +52,7 @@ |
||
| 52 | 52 | * @class NullExtractor |
| 53 | 53 | * @package Platine\DocxTemplate\Archive |
| 54 | 54 | */ |
| 55 | -class NullExtractor implements DocxExtractorInterface |
|
| 56 | -{ |
|
| 55 | +class NullExtractor implements DocxExtractorInterface { |
|
| 57 | 56 | /** |
| 58 | 57 | * {@inheritodc} |
| 59 | 58 | */ |
@@ -39,6 +39,5 @@ |
||
| 39 | 39 | * @class DocxArchiveException |
| 40 | 40 | * @package Platine\DocxTemplate\Exception |
| 41 | 41 | */ |
| 42 | -class DocxArchiveException extends Exception |
|
| 43 | -{ |
|
| 42 | +class DocxArchiveException extends Exception { |
|
| 44 | 43 | } |