| 1 | <?php |
||
| 18 | class VndErrorRepresentation |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @Serializer\Expose |
||
| 22 | */ |
||
| 23 | private $message; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @Serializer\Expose |
||
| 27 | * @Serializer\XmlAttribute |
||
| 28 | */ |
||
| 29 | private $logref; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var Relation |
||
| 33 | */ |
||
| 34 | private $help; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var Relation |
||
| 38 | */ |
||
| 39 | private $describes; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param string $message |
||
| 43 | * @param integer $logref |
||
| 44 | */ |
||
| 45 | public function __construct($message, $logref = null, Relation $help = null, Relation $describes = null) |
||
| 52 | |||
| 53 | public function getRelations($object, ClassMetadataInterface $classMetadata) |
||
| 67 | |||
| 68 | public function getMessage() |
||
| 72 | |||
| 73 | public function getLogref() |
||
| 77 | } |
||
| 78 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.