@@ -67,7 +67,7 @@ |
||
67 | 67 | $args = [$object]; |
68 | 68 | |
69 | 69 | if ($state == 'delete') { |
70 | - $args= [get_class($object), $this->getIdValue($object)]; |
|
70 | + $args = [get_class($object), $this->getIdValue($object)]; |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | call_user_func([$this->webServiceClient, $state], ...$args); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public function clear($objectName = null) |
75 | 75 | { |
76 | - $this->unitOfWork = new UnitOfWork($this->metadataFactory); |
|
76 | + $this->unitOfWork = new UnitOfWork($this->metadataFactory); |
|
77 | 77 | $this->transferPersister = new TransferPersister( |
78 | 78 | $this->metadataFactory, |
79 | 79 | $this->unitOfWork, |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | |
114 | 114 | public function getClassMetadata($className): TransferMetadata |
115 | 115 | { |
116 | - if(is_object($className)) { |
|
116 | + if (is_object($className)) { |
|
117 | 117 | $className = get_class($className); |
118 | 118 | } |
119 | 119 |