Bravo3\Orm\Drivers\Common\SerialisedData::getSerialisationCode PHP Method

getSerialisationCode() public method

Get SerialisationCode
public getSerialisationCode ( ) : string
return string
    public function getSerialisationCode()
    {
        return $this->serialisation_code;
    }

Usage Example

Example #1
0
 /**
  * Deserialise and hydrate all primitive data in the proxy (not relationships)
  *
  * @return $this
  */
 public function hydrate()
 {
     $serialiser = $this->entity_manager->getSerialiserMap()->getSerialiser($this->serialised_data->getSerialisationCode());
     /** @var OrmProxyInterface $proxy */
     $proxy = $this->getProxy();
     // Deserialise and hydrate the entity
     $serialiser->deserialise($this->metadata, $this->serialised_data, $proxy);
     // Save the original state of all indices so we can compare on consequent persist calls
     $proxy->setOriginalId($this->getReader()->getId());
     foreach ($this->metadata->getIndices() as $index) {
         // If an index is a relationship, automatic hydration will not work due to AOP recursion
         // Instead, check each index column for a relationship and hydrate it manually
         foreach ($index->getColumns() as $column) {
             if ($relationship = $this->metadata->getRelationshipByName($column)) {
                 if (!isset($this->hydrated_methods[$relationship->getGetter()])) {
                     $this->hydrateRelative($relationship);
                 }
             }
         }
         $proxy->setIndexOriginalValue($index->getName(), $this->getReader()->getIndexValue($index));
     }
     $this->is_hydrated = true;
     return $this;
 }
All Usage Examples Of Bravo3\Orm\Drivers\Common\SerialisedData::getSerialisationCode