Last active
August 29, 2015 14:14
-
-
Save kejyun/ff75e0cfb4678ed260db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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