Split API classes and interfaces

This commit is contained in:
Jeremy Mikola
2014-06-12 03:07:57 -04:00
parent 080dcb2d52
commit cd2d37ef38
25 changed files with 515 additions and 116 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace MongoDB;
interface ServerError extends ServerResult
{
/**
* @return integer Server error code
*/
function getCode();
/**
* @return string Server error message
*/
function getMessage();
}