Skip to content

Instantly share code, notes, and snippets.

View nyeholt's full-sized avatar

Marcus nyeholt

  • Symbiote
  • Melbourne
View GitHub Profile
@nyeholt
nyeholt / ORM.php
Created November 2, 2012 04:24 — forked from stojg/ORM.php
ORM scratch board
<?php
/*
Ideas on ORM interface and interactions / relationships
*/
class Dataobject {
function __construct(Data $mapper, array $data = null) {
$this->mapper = $mapper;
if($data) {