Skip to content

Commit 23e3043

Browse files
committed
Fix deprecation warnings
1 parent 177969c commit 23e3043

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

phpunit.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
backupGlobals="false"
4-
colors="true"
5-
processIsolation="false"
6-
stopOnFailure="false"
7-
stopOnError="false"
8-
stopOnIncomplete="false"
9-
stopOnSkipped="false"
10-
bootstrap="vendor/autoload.php"
113
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
125
cacheDirectory=".phpunit.cache"
13-
backupStaticProperties="false"
6+
colors="true"
7+
beStrictAboutOutputDuringTests="true"
8+
displayDetailsOnIncompleteTests="true"
9+
displayDetailsOnSkippedTests="true"
10+
displayDetailsOnTestsThatTriggerDeprecations="true"
11+
displayDetailsOnTestsThatTriggerErrors="true"
12+
displayDetailsOnTestsThatTriggerNotices="true"
13+
displayDetailsOnTestsThatTriggerWarnings="true"
1414
>
1515
<coverage/>
1616
<testsuites>

tests/Unit/V1/RelationshipLinkTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ class RelationshipLinkTest extends TestCase
3131
{
3232
use HelperTrait;
3333

34+
private Accessable $relationship;
35+
3436
/**
3537
* @setup
3638
*/

0 commit comments

Comments
 (0)