Demo\Aspect\HealthyLiveAspect::cleanTeethAfterEat PHP Method

cleanTeethAfterEat() protected method

Method that advices to clean the teeth after eating
protected cleanTeethAfterEat ( Go\Aop\Intercept\MethodInvocation $invocation )
$invocation Go\Aop\Intercept\MethodInvocation Invocation
    protected function cleanTeethAfterEat(MethodInvocation $invocation)
    {
        /** @var $person \Demo\Example\HumanDemo */
        $person = $invocation->getThis();
        $person->cleanTeeth();
    }