15 lines
318 B
PHP
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);
|
|
}
|
|
} |