injectableFactory = $injectableFactory; } public function create(bool $skipAcl = false) : Htmlizer { $with = []; if ($skipAcl) { $with['acl'] = null; } return $this->injectableFactory->createWith(Htmlizer::class, $with); } }