[Cache] Ignore missing annotations.php

This commit is contained in:
Roland Franssen 2017-05-30 16:55:30 +02:00 committed by Fabien Potencier
parent adc39a2f57
commit e8f70c75b9

View File

@ -126,6 +126,6 @@ EOF;
*/
private function initialize()
{
$this->values = @(include $this->file) ?: array();
$this->values = file_exists($this->file) ? (include $this->file ?: array()) : array();
}
}