Skip to content

Instantly share code, notes, and snippets.

@brikou
Created May 6, 2011 09:50
Show Gist options
  • Save brikou/958702 to your computer and use it in GitHub Desktop.
Save brikou/958702 to your computer and use it in GitHub Desktop.
constructor
<?php
$book = new Book(array(
'name' => 'Les aventures de François',
'status' => 'published',
'author' => new Author(array(
'name' => 'François',
'age' => '27',
)),
));
@brikou
Copy link
Author

brikou commented May 6, 2011

of courser array parameter wouldn't be mandatory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment