Demo\Aspect\HealthyLiveAspect::washUpBeforeEat PHP Method

washUpBeforeEat() protected method

Washing hands before eating
protected washUpBeforeEat ( Go\Aop\Intercept\MethodInvocation $invocation )
$invocation Go\Aop\Intercept\MethodInvocation Invocation
    protected function washUpBeforeEat(MethodInvocation $invocation)
    {
        /** @var $person \Demo\Example\HumanDemo */
        $person = $invocation->getThis();
        $person->washUp();
    }