File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -48,16 +48,19 @@ public function query($query)
48
48
49
49
public function getDatabases ()
50
50
{
51
+ @trigger_error ('The ' .__METHOD__ .' method is deprecated since version 0.8.1 and will be removed in 0.9. ' , E_USER_DEPRECATED );
51
52
return $ this ->query ("show databases " );
52
53
}
53
54
54
55
public function createDatabase ($ name )
55
56
{
57
+ @trigger_error ('The ' .__METHOD__ .' method is deprecated since version 0.8.1 and will be removed in 0.9. ' , E_USER_DEPRECATED );
56
58
return $ this ->query ("create database \"{$ name }\"" );
57
59
}
58
60
59
61
public function deleteDatabase ($ name )
60
62
{
63
+ @trigger_error ('The ' .__METHOD__ .' method is deprecated since version 0.8.1 and will be removed in 0.9. ' , E_USER_DEPRECATED );
61
64
return $ this ->query ("drop database \"{$ name }\"" );
62
65
}
63
66
}
You can’t perform that action at this time.
0 commit comments