Skip to content

Commit fb2234f

Browse files
committed
Add IDatabaseObject interface
1 parent deb1170 commit fb2234f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/libraries/IDatabaseObject.php

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
namespace BNETDocs\Libraries;
3+
interface IDatabaseObject
4+
{
5+
/**
6+
* Allocates object properties from the database.
7+
*/
8+
function allocate();
9+
10+
/**
11+
* Commit object properties to the database.
12+
*/
13+
function commit();
14+
}

0 commit comments

Comments
 (0)