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