Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
robertSt7 authored and github-actions[bot] committed Aug 3, 2023
1 parent 10b76a1 commit 8eb6000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mapping/Operator/Simple/LoadDataObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function process($inputData, bool $dryRun = false)
foreach ($inputData as $data) {
$object = null;
$logMessage = '';
if (empty($data) === false || $data === "0") {
if (empty($data) === false || $data === '0') {
if ($this->loadStrategy === self::LOAD_STRATEGY_PATH) {
$object = $this->dataObjectLoader->loadByPath(trim($data));
$logMessage = 'by path `' . trim($data) . '`';
Expand Down

0 comments on commit 8eb6000

Please sign in to comment.