Files
myep/src/BusProNet/ApiResponseParser/NotificationResponseParser.php
T
2024-11-20 18:32:09 +01:00

15 lines
318 B
PHP

<?php
namespace App\BusProNet\ApiResponseParser;
use App\BusProNet\Model\Notification;
class NotificationResponseParser
{
public function parse(\SimpleXMLElement $xml): Notification
{
$recordXml = $xml->satz;
return new Notification((int) $recordXml->nr, (string) $recordXml->text);
}
}