Skip to content

Commit

Permalink
Remove error logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasAFink committed Jan 9, 2024
1 parent 9fb6221 commit f3d4ef0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions zmsentities/src/Zmsentities/Schema/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public function getEntity()
{
$entityName = $this->getEntityName();
$class = "\\BO\\Zmsentities\\$entityName";
error_log($class);
return new $class(new UnflattedArray($this->data));
}

Expand All @@ -50,7 +49,6 @@ public function getEntityName()
throw new \BO\Zmsentities\Exception\SchemaMissingKey('Missing $schema-key on given data.');
}
$schema = $this->data['$schema'];
error_log($schema );
$entityName = preg_replace('#^.*/([^/]+)\.json#', '$1', $schema);
return ucfirst($entityName);
}
Expand Down

0 comments on commit f3d4ef0

Please sign in to comment.