added type annotation again

This commit is contained in:
Rudi Grinberg 2012-09-05 17:51:50 -04:00
parent aa6e061118
commit 73e152ebcf
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<?php <?php
class Application_Common_Database class Application_Common_Database
{ {
public static function prepareAndExecute($sql, $paramValueMap, $type='all') public static function prepareAndExecute($sql, array $paramValueMap, $type='all')
{ {
$con = Propel::getConnection(); $con = Propel::getConnection();
$stmt = $con->prepare($sql); $stmt = $con->prepare($sql);