domain-model-mapper icon indicating copy to clipboard operation
domain-model-mapper copied to clipboard

A lightweight ORM package for PHP 5.3 based on the Data Mapper pattern.

Results 1 domain-model-mapper issues
Sort by recently updated
recently updated
newest added

Hello, first thanks for sharing your work. I am setting this model: ``` $user = new User; //$user->USER_ID = null $user->FULL_NAME = 'DBTEST_1'; $user->EMAIL = 'DBTEST_2'; $user->LOGIN = 'test'; $user->PASSWORD...