05-06-2015, 05:47 PM
On dit pas que c'est nul. Et bon, tu peux fatiguer mais vu que on est juste en train d'implémenter une pauvre transaction de pièces d'or entre deux personnes seulement ... si East est génial, ça devrait prendre 5 secondes de moins qu'avec un getter et des
Moi si j'ai bien compris East, c'est la classe qui fournit une API qui définit l'interface du code appelant. donc pour moi tout ça tient dans
instanceof
, soit 0 secondes si je calcule bien.Moi si j'ai bien compris East, c'est la classe qui fournit une API qui définit l'interface du code appelant. donc pour moi tout ça tient dans
Beggar
.<?php
interface Beggar {
public function giveGold(Gold $gold);
public function areYouAWoman(Hero $hero);
public function areYouAKid(Hero $hero);
public function areYouAJudoka(Hero $hero);
}
interface Hero {
public function askGold(Beggar $beggar);
public function beggarIsAWoman(Beggar $beggar);
public function beggarIsAKid(Beggar $beggar);
public function beggarIsAJudoka(Beggar $beggar);
}