Skip to content

Instantly share code, notes, and snippets.

@kejyun
Last active August 29, 2015 14:14
Show Gist options
  • Save kejyun/ff75e0cfb4678ed260db to your computer and use it in GitHub Desktop.
Save kejyun/ff75e0cfb4678ed260db to your computer and use it in GitHub Desktop.
<?php namespace Repositories\Pokemon;
// model/Repositories/Pokemon/PokemonInterface.php
/**
* A simple interface to set the methods in our Pokemon repository, nothing much happening here
* 簡單的介面去設定我們的 Pokemon 資源庫
*/
interface PokemonInterface
{
public function getPokemonById($pokemonId);
public function getPokemonByName($pokemonName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment