Example #1
0
 public function __construct()
 {
     $this->serializer = SerializerFactory::getSerializer();
 }
Example #2
0
 /**
  * Get the serializer
  * @return \Upg\Library\Serializer\Serializer
  */
 public function getSerializer()
 {
     if (!$this->serializer) {
         $this->serializer = SerializerFactory::getSerializer();
     }
     return $this->serializer;
 }