Skip to content
Snippets Groups Projects
Commit 0809390e authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix build

parent aeb82a6a
No related branches found
No related tags found
No related merge requests found
...@@ -91,6 +91,7 @@ ...@@ -91,6 +91,7 @@
"require-dev": { "require-dev": {
"ext-curl": "*", "ext-curl": "*",
"mikey179/vfsstream": "~1.6", "mikey179/vfsstream": "~1.6",
"phpunit/phpunit": "^7.5",
"simplesamlphp/simplesamlphp-test-framework": "^0.1.2", "simplesamlphp/simplesamlphp-test-framework": "^0.1.2",
"vimeo/psalm": "~3.14" "vimeo/psalm": "~3.14"
}, },
......
...@@ -69,9 +69,9 @@ class CriticalConfigurationError extends ConfigurationError ...@@ -69,9 +69,9 @@ class CriticalConfigurationError extends ConfigurationError
/** /**
* @param \Throwable $exception * @param \Throwable $exception
* *
* @return \SimpleSAML\Error\CriticalConfigurationError * @return \SimpleSAML\Error\Exception
*/ */
public static function fromException(Throwable $exception): CriticalConfigurationError public static function fromException(Throwable $exception): Exception
{ {
$reason = null; $reason = null;
$file = null; $file = null;
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
</filter> </filter>
<logging> <logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/> <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-html" target="build/coverage" title="PHP Coveralls" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/> <log type="coverage-html" target="build/coverage" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/> <log type="coverage-clover" target="build/logs/clover.xml"/>
</logging> </logging>
</phpunit> </phpunit>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment