Skip to content

Instantly share code, notes, and snippets.

@chillu
Last active December 31, 2015 21:49
Show Gist options
  • Save chillu/8048900 to your computer and use it in GitHub Desktop.
Save chillu/8048900 to your computer and use it in GitHub Desktop.
<?php
class MyFakeObject extends FakeObject{
public function getSchema() {
return array(
'id' => null,
'personalDetails' => new FakeObject(array(
'firstName' => null,
'lastName' => null
))
);
}
public function getDefaults() {
return array_merge_recursive(
$this->getSchema(),
array(
'firstName' => 'Joe'
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment