Skip to content

Commit

Permalink
Add IDatabaseObject interface
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jul 10, 2021
1 parent deb1170 commit fb2234f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/libraries/IDatabaseObject.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
namespace BNETDocs\Libraries;
interface IDatabaseObject
{
/**
* Allocates object properties from the database.
*/
function allocate();

/**
* Commit object properties to the database.
*/
function commit();
}

0 comments on commit fb2234f

Please sign in to comment.