Skip to content

Commit

Permalink
TASK: Fix justified StyleCI complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
kdambekalns authored Sep 27, 2019
1 parent 61f3002 commit f5efecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/ExtractionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected function buildAssetMetaData(Asset $asset, MetaDataCollection $metaData
'AssetObject' => $asset,
];
if (method_exists($asset, 'getCopyrightNotice')) {
$properties['CopyrightNotice'] = $asset->getCopyrightNotice();
$properties['CopyrightNotice'] = $asset->getCopyrightNotice();
}
$assetDto = new Dto\Asset($properties);
$metaDataCollection->set('asset', $assetDto);
Expand Down

0 comments on commit f5efecb

Please sign in to comment.