Skip to content

Commit

Permalink
Merge branch 'new' into development
Browse files Browse the repository at this point in the history
# Conflicts:
#	composer.json
  • Loading branch information
natanfelles committed Jan 23, 2024
2 parents aed172e + b5aa559 commit 972e34d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -68,7 +68,7 @@
"jetbrains/phpstorm-attributes": "^1.0",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "10.1.3"
"phpunit/phpunit": "^10.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Expand Up @@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false"
bootstrap="vendor/autoload.php" colors="true" stopOnError="false" stopOnFailure="false"
stopOnIncomplete="false" stopOnSkipped="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<coverage>
<report>
Expand Down
1 change: 1 addition & 0 deletions tests/AppTest.php
Expand Up @@ -46,6 +46,7 @@ final class AppTest extends TestCase
protected function setUp() : void
{
$this->app = new App(new Config(__DIR__ . '/configs', [], '.config.php'));
\restore_error_handler();
}

public function testInitialization() : void
Expand Down
1 change: 1 addition & 0 deletions tests/Debug/AppCollectorTest.php
Expand Up @@ -35,6 +35,7 @@ protected function setUp() : void
$this->collector = $this->app::debugger()
->getCollection('App')
->getCollectors()[0];
\restore_error_handler();
}

protected function getExternalCollector() : AppCollector
Expand Down

0 comments on commit 972e34d

Please sign in to comment.