Access your XML Dom in Laminas

Code
<?php

use Laminas\Dom\Document;
use 
Laminas\Dom\Document\Query;

$file __DIR__ '/test.xml';

$doc = new Document(file_get_contents($file));

$title Query::execute('/catalog/book[2]/title'$doc);
$desc Query::execute('/catalog/book[2]/description'$doc);

echo 
sprintf(
    
'<b>%s</b> - %s',
    
$title[0]->textContent,
    
$desc[0]->textContent
);
Result
Midnight Rain - A former architect battles corporate zombies, an evil sorceress, and her own childhood to become queen of the world.
Used Versions
PHP 8.2, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8