/** * Checks if initializer supports provided context. * * @param Context $context * * @return Boolean */ public function initializeContext(Context $context) { if (!$context instanceof AliceAwareInterface) { return; } $context->setExecutor($this->executor); }