Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,11 @@
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="tests/build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-html" target="tests/build/coverage"/>
<log type="coverage-text" target="tests/build/coverage.txt"/>
<log type="coverage-clover" target="tests/build/logs/clover.xml"/>
</logging>
<filter>
<blacklist>
<directory suffix=".php">./vendor</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
Expand Down
5 changes: 4 additions & 1 deletion src/Singleton.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@

final class Singleton
{
private static self $instance;
/**
* @var Singleton
*/
private static $instance;

public static function getInstance(): self
{
Expand Down