Walther Lalk 12 年 前
コミット
194beedb45
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/Database/Statement/SqlserverStatement.php

+ 2 - 2
src/Database/Statement/SqlserverStatement.php

@@ -24,7 +24,7 @@ use PDO;
 class SqlserverStatement extends PDOStatement {
 
 /**
- * {$@inheritdoc}
+ * {@inheritDoc}
  *
  * The SQL Server PDO driver requires that binary parameters be bound with the SQLSRV_ENCODING_BINARY attribute.
  * This overrides the PDOStatement::bindValue method in order to bind binary columns using the required attribute.
@@ -42,4 +42,4 @@ class SqlserverStatement extends PDOStatement {
 			$this->_statement->bindValue($column, $value, $type);
 		}
 	}
-} 
+}