Skip to content

Commit

Permalink
Fix the build
Browse files Browse the repository at this point in the history
  • Loading branch information
Elendev committed Aug 15, 2024
1 parent 74cd140 commit 5aed6bd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/ZipArchiverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function testArchiveDirectory(string $directory, array $expectedResult, s
$this->assertArchiveContainsFiles($this->generationPath, $expectedResult);
}

public function zipArchiverProvider() {
public static function zipArchiverProvider() {
return [
[
__DIR__ . '/ZipArchiverTest/TypicalArchive',
Expand Down Expand Up @@ -103,7 +103,7 @@ public function testComposerArchiveDirectory(string $directory, array $expectedR
$this->assertComposerJsonVersion($this->generationPath, $subdirectory, $version);
}

public function composerArchiverProvider() {
public static function composerArchiverProvider() {
return [
[
__DIR__ . '/ZipArchiverTest/ComposerJsonArchive',
Expand Down
4 changes: 3 additions & 1 deletion tests/ZipArchiverTest/TypicalArchive/src/myFile.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php
/**
* Empty test file
*/
*/

class myFile {}
4 changes: 3 additions & 1 deletion tests/ZipArchiverTest/TypicalArchive/src/myOtherFile.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php
/**
* Empty test file
*/
*/

class myOtherFile {}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
/**
* Empty file
*/
*/
class myFileTest {}
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php
/**
* Empty file
*/
*/

class myOtherFileTest {}

0 comments on commit 5aed6bd

Please sign in to comment.