-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhance integration tests logging libraries mocks
Empty files don't get executed by PHP 8.2 therefore mocks needs to do something.
- Loading branch information
Showing
4 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
5 changes: 4 additions & 1 deletion
5
tests/integration/logging/analog/vendor/analog/analog/lib/Analog/Analog.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<?php | ||
|
||
/* This is a mock of Analog library as it would have been installed by a composer */ | ||
/* This is a mock of Analog library as it would have been installed by a composer */ | ||
|
||
/* Empty files don't get executed by PHP 8.2 therefore the mock needs to do something */ | ||
echo ""; |
5 changes: 4 additions & 1 deletion
5
tests/integration/logging/cakephp-log/vendor/cakephp/log/Log.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<?php | ||
|
||
/* This is a mock of cakephp-log library as it would have been installed by a composer */ | ||
/* This is a mock of cakephp-log library as it would have been installed by a composer */ | ||
|
||
/* Empty files don't get executed by PHP 8.2 therefore the mock needs to do something */ | ||
echo ""; |
5 changes: 4 additions & 1 deletion
5
tests/integration/logging/consolidation-log/vendor/consolidation/log/src/Logger.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<?php | ||
|
||
/* This is a mock of consolidation-log library as it would have been installed by a composer */ | ||
/* This is a mock of consolidation-log library as it would have been installed by a composer */ | ||
|
||
/* Empty files don't get executed by PHP 8.2 therefore the mock needs to do something */ | ||
echo ""; |
5 changes: 4 additions & 1 deletion
5
tests/integration/logging/laminas-log/vendor/laminas/laminas-log/src/Logger.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<?php | ||
|
||
/* This is a mock of laminas-log library as it would have been installed by a composer */ | ||
/* This is a mock of laminas-log library as it would have been installed by a composer */ | ||
|
||
/* Empty files don't get executed by PHP 8.2 therefore the mock needs to do something */ | ||
echo ""; |