Skip to content

Commit

Permalink
enhance integration tests logging libraries mocks
Browse files Browse the repository at this point in the history
Empty files don't get executed by PHP 8.2 therefore mocks needs to do something.
  • Loading branch information
lavarou committed Jul 25, 2023
1 parent 712396c commit 14b3747
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
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 "";
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 "";
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 "";
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 "";

0 comments on commit 14b3747

Please sign in to comment.