Passed
Push — master ( e9553b...189bd2 )
by Marco
08:04 queued 16s
created
src/Comodojo/Zip/ZipManager.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,7 @@
 block discarded – undo
27 27
  * THE SOFTWARE.
28 28
  */
29 29
 
30
-class ZipManager implements Countable
31
-{
30
+class ZipManager implements Countable {
32 31
 
33 32
     /**
34 33
      * Array of managed zip files
Please login to merge, or discard this patch.
src/Comodojo/Zip/Zip.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@
 block discarded – undo
60 60
      *
61 61
      * @throws ZipException
62 62
      */
63
-    public function __construct(string $zip_file)
64
-    {
63
+    public function __construct(string $zip_file) {
65 64
         if (empty($zip_file)) {
66 65
             throw new ZipException(StatusCodes::get(ZipArchive::ER_NOENT));
67 66
         }
Please login to merge, or discard this patch.
src/Comodojo/Zip/Traits/PathTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
  * THE SOFTWARE.
24 24
  */
25 25
 
26
-trait PathTrait
27
-{
26
+trait PathTrait {
28 27
 
29 28
     /**
30 29
      * Current base path
Please login to merge, or discard this patch.
src/Comodojo/Zip/Traits/CommentTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
  * THE SOFTWARE.
24 24
  */
25 25
 
26
-trait CommentTrait
27
-{
26
+trait CommentTrait {
28 27
 
29 28
     abstract public function getArchive(): ?ZipArchive;
30 29
 
Please login to merge, or discard this patch.
src/Comodojo/Zip/Traits/ArchiveTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
  * THE SOFTWARE.
24 24
  */
25 25
 
26
-trait ArchiveTrait
27
-{
26
+trait ArchiveTrait {
28 27
 
29 28
     /**
30 29
      * ZipArchive internal pointer
Please login to merge, or discard this patch.
src/Comodojo/Zip/Traits/MaskTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@
 block discarded – undo
22 22
  * THE SOFTWARE.
23 23
  */
24 24
 
25
-trait MaskTrait
26
-{
25
+trait MaskTrait {
27 26
 
28 27
     /**
29 28
      * Mask for the extraction folder (if it should be created)
Please login to merge, or discard this patch.
src/Comodojo/Zip/Traits/SkipTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
  * THE SOFTWARE.
24 24
  */
25 25
 
26
-trait SkipTrait
27
-{
26
+trait SkipTrait {
28 27
 
29 28
     /**
30 29
      * Select files to skip
Please login to merge, or discard this patch.
src/Comodojo/Zip/Traits/PasswordTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
  * THE SOFTWARE.
24 24
  */
25 25
 
26
-trait PasswordTrait
27
-{
26
+trait PasswordTrait {
28 27
 
29 28
     abstract public function getArchive(): ?ZipArchive;
30 29
 
Please login to merge, or discard this patch.
src/Comodojo/Zip/Interfaces/ZipInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
  * THE SOFTWARE.
24 24
  */
25 25
 
26
-interface ZipInterface
27
-{
26
+interface ZipInterface {
28 27
 
29 28
     public const SKIP_NONE = 'NONE';
30 29
 
Please login to merge, or discard this patch.