Skip to content

Commit

Permalink
removed print_r statement
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-graute committed May 17, 2021
1 parent e642de8 commit a21d41e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pressmind/ORM/Object/AbstractObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ private function _createHasOneRelations() {
if(!empty($this->$key)) {
/**@var AbstractObject $object**/
$object = $this->$key;
print_r($object);
// print_r($object);
if(isset($property['relation']['on_save_related_properties']) && is_array($property['relation']['on_save_related_properties'])) {
foreach($property['relation']['on_save_related_properties'] as $local_property_name => $foreign_property_name) {
$object->$foreign_property_name = $this->$local_property_name;
Expand Down

0 comments on commit a21d41e

Please sign in to comment.