@@ -28,7 +28,7 @@ class DbtngExampleStorage {
28
28
*
29
29
* @see db_insert()
30
30
*/
31
- public static function insert ($ entry ) {
31
+ public static function insert (array $ entry ) {
32
32
$ return_value = NULL ;
33
33
try {
34
34
$ return_value = db_insert ('dbtng_example ' )
@@ -56,13 +56,13 @@ public static function insert($entry) {
56
56
*
57
57
* @see db_update()
58
58
*/
59
- public static function update ($ entry ) {
59
+ public static function update (array $ entry ) {
60
60
try {
61
61
// db_update()...->execute() returns the number of rows updated.
62
62
$ count = db_update ('dbtng_example ' )
63
- ->fields ($ entry )
64
- ->condition ('pid ' , $ entry ['pid ' ])
65
- ->execute ();
63
+ ->fields ($ entry )
64
+ ->condition ('pid ' , $ entry ['pid ' ])
65
+ ->execute ();
66
66
}
67
67
catch (\Exception $ e ) {
68
68
drupal_set_message (t ('db_update failed. Message = %message, query= %query ' , array (
@@ -83,10 +83,10 @@ public static function update($entry) {
83
83
*
84
84
* @see db_delete()
85
85
*/
86
- public static function delete ($ entry ) {
86
+ public static function delete (array $ entry ) {
87
87
db_delete ('dbtng_example ' )
88
- ->condition ('pid ' , $ entry ['pid ' ])
89
- ->execute ();
88
+ ->condition ('pid ' , $ entry ['pid ' ])
89
+ ->execute ();
90
90
}
91
91
92
92
/**
@@ -161,7 +161,7 @@ public static function delete($entry) {
161
161
* @see http://drupal.org/node/310072
162
162
* @see http://drupal.org/node/310075
163
163
*/
164
- public static function load ($ entry = array ()) {
164
+ public static function load (array $ entry = array ()) {
165
165
// Read all fields from the dbtng_example table.
166
166
$ select = db_select ('dbtng_example ' , 'example ' );
167
167
$ select ->fields ('example ' );
0 commit comments