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
2 changes: 2 additions & 0 deletions phpunit-integration.baseline.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<files version="1"/>
9 changes: 8 additions & 1 deletion phpunit-integration.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<phpunit backupGlobals="false" bootstrap="tests/integration/bootstrap.php" beStrictAboutTestsThatDoNotTestAnything="true" colors="true" failOnWarning="true" failOnNotice="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<phpunit backupGlobals="false" bootstrap="tests/integration/bootstrap.php" beStrictAboutTestsThatDoNotTestAnything="true" colors="true" failOnWarning="true" failOnNotice="true" failOnDeprecation="true" displayDetailsOnTestsThatTriggerDeprecations="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="integration_persistence">
<directory>tests/integration/Persistence</directory>
Expand All @@ -15,4 +15,11 @@
<extensions>
<bootstrap class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension"/>
</extensions>
<source baseline="phpunit-integration.baseline.xml" ignoreIndirectDeprecations="false" ignoreSuppressionOfDeprecations="true">
<include>
<directory>src/lib</directory>
<directory>src/contracts</directory>
<directory>src/bundle</directory>
</include>
</source>
</phpunit>
11 changes: 11 additions & 0 deletions phpunit.baseline.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0"?>
<files version="1">
<file path="vendor/league/flysystem/src/Local/LocalFilesystemAdapter.php">
<line number="84" hash="ceb043f6ab1e59b0d2e3038886d66ec328517fc4">
<issue><![CDATA[League\Flysystem\Local\LocalFilesystemAdapter::__construct(): Implicitly marking parameter $visibility as nullable is deprecated, the explicit nullable type must be used instead]]></issue>
</line>
<line number="87" hash="165df3579a764873c0a79588b58033eeea0f5bc2">
<issue><![CDATA[League\Flysystem\Local\LocalFilesystemAdapter::__construct(): Implicitly marking parameter $mimeTypeDetector as nullable is deprecated, the explicit nullable type must be used instead]]></issue>
</line>
</file>
</files>
9 changes: 8 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<phpunit backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="false" colors="true" failOnWarning="true" failOnNotice="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<phpunit backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="false" colors="true" failOnWarning="true" failOnNotice="true" failOnDeprecation="true" displayDetailsOnTestsThatTriggerDeprecations="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="ibexa_richtext_field_type">
<directory>tests/lib</directory>
Expand All @@ -8,4 +8,11 @@
<exclude>tests/lib/RichText/TextExtractor/BaseTest.php</exclude>
</testsuite>
</testsuites>
<source baseline="phpunit.baseline.xml" ignoreIndirectDeprecations="false" ignoreSuppressionOfDeprecations="true">
<include>
<directory>src/lib</directory>
<directory>src/contracts</directory>
<directory>src/bundle</directory>
</include>
</source>
</phpunit>
Loading