Skip to content

Instantly share code, notes, and snippets.

@simensen
Created January 27, 2010 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simensen/288225 to your computer and use it in GitHub Desktop.
Save simensen/288225 to your computer and use it in GitHub Desktop.
<?php
hc_core_ClassLoader::load('s3a_domain_model_Space');
hc_core_ClassLoader::load('s3a_domain_model_Neighborhood');
interface s3a_domain_ISpaceRepository {
public function find($spaceSymName);
public function findById($spaceId);
public function findAll();
public function save(s3a_domain_model_Space $space);
public function saveSpaceUri(s3a_domain_model_SpaceUri $spaceUri);
public function addNeighborhood(s3a_domain_model_Space $space, s3a_domain_model_Neighborhood $neighborhood);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment