izzum\examples\inheritance\SuperHero::changeIntoNormalClothes PHP Method

changeIntoNormalClothes() public method

public changeIntoNormalClothes ( SuperHero $entity )
$entity SuperHero
    public function changeIntoNormalClothes(SuperHero $entity)
    {
        echo $this->name . " is changing into normal clothes. The human alter ego of " . $this->alias . PHP_EOL;
        $this->printMyAwesomeness(false);
    }