コード例 #1
0
ファイル: Connection.php プロジェクト: sad-spirit/pg-wrapper
 /**
  * Sets the factory object for converters to and from PostgreSQL types
  *
  * @param TypeConverterFactory $factory
  * @return $this
  */
 public function setTypeConverterFactory(TypeConverterFactory $factory)
 {
     $this->_converterFactory = $factory;
     $factory->setConnection($this);
     return $this;
 }