annotate vendor/sabre/vobject/tests/VObject/Issue153Test.php @ 49:91f005a4f7e9
Slowly cleaning up more php8 Warnings/deprecations
| author |
Charlie Root |
| date |
Mon, 06 Oct 2025 12:19:59 -0400 |
| parents |
430dbd5346f7 |
| children |
|
| rev |
line source |
|
7
|
1 <?php
|
|
|
2
|
|
|
3 namespace Sabre\VObject;
|
|
|
4
|
|
|
5 class Issue153Test extends \PHPUnit_Framework_TestCase {
|
|
|
6
|
|
|
7 function testRead() {
|
|
|
8
|
|
|
9 $obj = Reader::read(file_get_contents(dirname(__FILE__) . '/issue153.vcf'));
|
|
|
10 $this->assertEquals('Test Benutzer', (string)$obj->fn);
|
|
|
11
|
|
|
12 }
|
|
|
13
|
|
|
14 }
|