1
0
mirror of synced 2025-01-09 10:37:09 +03:00
This commit is contained in:
Adrian Olek 2014-04-13 23:45:42 +02:00 committed by Marco Pivetta
parent 72bb16173a
commit eccd8f85bc
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ class AnnotationDriver extends AbstractAnnotationDriver
'columns' => $indexAnnot->columns,
);
if( ! empty($indexAnnot->flags)) {
if ( ! empty($indexAnnot->flags)) {
$index['flags'] = $indexAnnot->flags;
}

View File

@ -201,7 +201,7 @@ class XmlDriver extends FileDriver
'columns' => $columns
);
if( isset($indexXml['flags'])) {
if (isset($indexXml['flags'])) {
$index['flags'] = explode(',', (string)$indexXml['flags']);
}