Skip to content

Instantly share code, notes, and snippets.

View graemetait's full-sized avatar

Graeme Tait graemetait

View GitHub Profile
@graemetait
graemetait / example_Author.php
Last active August 30, 2015 10:13 — forked from livkiss/example_Author.php
Example usage of Fractal with objects instead of arrays
<?php namespace Example;
class Author
{
private $id;
private $name;
public function __construct($id, $name)
{
$this->id = $id;