This file is indexed.

/usr/share/php/Doctrine/ORM/Persisters/PersisterException.php is in php-doctrine-orm 2.5.14+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace Doctrine\ORM\Persisters;

use Doctrine\ORM\ORMException;

class PersisterException extends ORMException
{
    /**
     * @return PersisterException
     */
    static public function matchingAssocationFieldRequiresObject($class, $associationName)
    {
        return new self(sprintf(
            "Cannot match on %s::%s with a non-object value. Matching objects by id is " .
            "not compatible with matching on an in-memory collection, which compares objects by reference.",
            $class, $associationName
        ));
    }
}