filemtime(): stat failed for /Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php (500 Whoops, looks like something went wrong.)

filemtime(): stat failed for /Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php

Exception

yii\base\ ErrorException

Show exception properties
yii\base\ErrorException {#1679
  #severity: E_WARNING
}
  1. 'filter' => function(string $path) use ($basename, $time): bool {
  2. $b = basename($path);
  3. return (
  4. $b !== $basename &&
  5. str_starts_with($b, 'CustomFieldBehavior') &&
  6. filemtime($path) < $time
  7. );
  8. },
  9. ]);
  10. } elseif ($load) {
  11. // Just evaluate the code
ErrorHandler->handleError(2, 'filemtime(): stat failed for /Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php', '/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php', 371)
  1. 'filter' => function(string $path) use ($basename, $time): bool {
  2. $b = basename($path);
  3. return (
  4. $b !== $basename &&
  5. str_starts_with($b, 'CustomFieldBehavior') &&
  6. filemtime($path) < $time
  7. );
  8. },
  9. ]);
  10. } elseif ($load) {
  11. // Just evaluate the code
Craft::{closure}('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php')
  1. * @return bool whether the file or directory satisfies the filtering options.
  2. */
  3. public static function filterPath($path, $options)
  4. {
  5. if (isset($options['filter'])) {
  6. $result = call_user_func($options['filter'], $path);
  7. if (is_bool($result)) {
  8. return $result;
  9. }
  10. }
  1. while (($file = readdir($handle)) !== false) {
  2. if ($file === '.' || $file === '..') {
  3. continue;
  4. }
  5. $path = $dir . DIRECTORY_SEPARATOR . $file;
  6. if (static::filterPath($path, $options)) {
  7. if (is_dir($path)) {
  8. try {
  9. static::removeDirectory($path, $options);
  10. } catch (UnexpectedValueException $e) {
  11. // Ignore if the folder has already been removed.
  1. }
  2. // Delete any CustomFieldBehavior files that are over 10 seconds old
  3. $basename = basename($filePath);
  4. $time = DateTimeHelper::currentTimeStamp() - 10;
  5. FileHelper::clearDirectory($dir, [
  6. 'filter' => function(string $path) use ($basename, $time): bool {
  7. $b = basename($path);
  8. return (
  9. $b !== $basename &&
  10. str_starts_with($b, 'CustomFieldBehavior') &&
  1. }
  2. foreach ($generatedFieldHandles as $handle) {
  3. $fieldTypes[$handle]['string'] = true;
  4. $fieldTypes[$handle]['null'] = true;
  5. }
  6. self::_generateCustomFieldBehavior($fieldHandles, $generatedFieldHandles, $fieldTypes, $filePath, true, false);
  7. // Generate a new field version if we need one
  8. if (!$fieldVersionExists) {
  9. try {
  10. $fieldsService->updateFieldVersion();
  1. * @param class-string $className
  2. */
  3. public static function autoload($className): void
  4. {
  5. if ($className === CustomFieldBehavior::class) {
  6. self::_autoloadCustomFieldBehavior();
  7. }
  8. }
  9. /**
  10. * Autoloads (and possibly generates) `CustomFieldBehavior.php`
Craft::autoload('craft\\behaviors\\CustomFieldBehavior')
  1. return [$this->_reflections[$class], $this->_dependencies[$class]];
  2. }
  3. $dependencies = [];
  4. try {
  5. $reflection = new ReflectionClass($class);
  6. } catch (\ReflectionException $e) {
  7. throw new NotInstantiableException(
  8. $class,
  9. 'Failed to instantiate component or class "' . $class . '".',
  10. 0,
  1. {
  2. /**
  3. * @var ReflectionClass $reflection
  4. * @phpstan-var ReflectionClass<T> $reflection
  5. */
  6. list($reflection, $dependencies) = $this->getDependencies($class);
  7. $addDependencies = [];
  8. if (isset($config['__construct()'])) {
  9. $addDependencies = $config['__construct()'];
  10. unset($config['__construct()']);
  1. }
  2. if (isset($this->_singletons[$class])) {
  3. // singleton
  4. return $this->_singletons[$class];
  5. } elseif (!isset($this->_definitions[$class])) {
  6. return $this->build($class, $params, $config);
  7. }
  8. $definition = $this->_definitions[$class];
  9. if (is_callable($definition, true)) {
  1. }
  2. if (isset($type['class'])) {
  3. $class = $type['class'];
  4. unset($type['class']);
  5. return static::$container->get($class, $params, $type);
  6. }
  7. throw new InvalidConfigException('Object configuration must be an array containing a "class" or "__class" element.');
  8. }
  1. * @phpstan-return Behavior<$this>
  2. */
  3. private function attachBehaviorInternal($name, $behavior)
  4. {
  5. if (!($behavior instanceof Behavior)) {
  6. $behavior = Yii::createObject($behavior);
  7. }
  8. if (is_int($name)) {
  9. $behavior->attach($this);
  10. $this->_behaviors[] = $behavior;
  11. } else {
  1. public function ensureBehaviors()
  2. {
  3. if ($this->_behaviors === null) {
  4. $this->_behaviors = [];
  5. foreach ($this->behaviors() as $name => $behavior) {
  6. $this->attachBehaviorInternal($name, $behavior);
  7. }
  8. }
  9. }
  10. /**
  1. * @param string $name the event name
  2. * @return bool whether there is any handler attached to the event.
  3. */
  4. public function hasEventHandlers($name)
  5. {
  6. $this->ensureBehaviors();
  7. if (!empty($this->_events[$name])) {
  8. return true;
  9. }
  1. */
  2. public function init(): void
  3. {
  4. parent::init();
  5. if ($this->hasEventHandlers(self::EVENT_INIT)) {
  6. $this->trigger(self::EVENT_INIT);
  7. }
  8. }
  9. /**
  1. public function __construct($config = [])
  2. {
  3. if (!empty($config)) {
  4. Yii::configure($this, $config);
  5. }
  6. $this->init();
  7. }
  8. /**
  9. * Initializes the object.
  10. * This method is invoked at the end of the constructor after the object is initialized with the
  1. // Set a placeholder for the default `orderBy` param
  2. if (!isset($this->orderBy)) {
  3. $this->orderBy(new OrderByPlaceholderExpression());
  4. }
  5. parent::__construct($config);
  6. }
  7. /**
  8. * @inheritdoc
  9. */
  1. * @inheritdoc
  2. * @return GlobalSetQuery The newly created [[GlobalSetQuery]] instance.
  3. */
  4. public static function find(): GlobalSetQuery
  5. {
  6. return new GlobalSetQuery(static::class);
  7. }
  8. /**
  9. * @inheritdoc
  10. * @since 3.3.0
  1. * @return MemoizableArray<GlobalSet>
  2. */
  3. private function _allSets(int $siteId): MemoizableArray
  4. {
  5. if (!isset($this->_allGlobalSets[$siteId])) {
  6. $this->_allGlobalSets[$siteId] = new MemoizableArray(GlobalSet::find()->siteId($siteId)->all());
  7. }
  8. return $this->_allGlobalSets[$siteId];
  9. }
  1. * @return GlobalSet[]
  2. */
  3. public function getAllSets(): array
  4. {
  5. /** @noinspection PhpUnhandledExceptionInspection */
  6. return $this->_allSets(Craft::$app->getSites()->getCurrentSite()->id)->all();
  7. }
  8. /**
  9. * Returns all global sets that are editable by the current user.
  10. *
  1. * @inheritdoc
  2. */
  3. public function getGlobals(): array
  4. {
  5. $globals = [];
  6. foreach (Craft::$app->getGlobals()->getAllSets() as $globalSet) {
  7. $globals[$globalSet->handle] = $globalSet;
  8. }
  9. return $globals;
  10. }
  11. }
  1. foreach ($this->extensions as $extension) {
  2. if (!$extension instanceof GlobalsInterface) {
  3. continue;
  4. }
  5. $globals = array_merge($globals, $extension->getGlobals());
  6. }
  7. if ($this->initialized) {
  8. $this->globals = $globals;
  9. }
  1. */
  2. public function getGlobals(): array
  3. {
  4. if ($this->extensionSet->isInitialized()) {
  5. if (null === $this->resolvedGlobals) {
  6. $this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals);
  7. }
  8. return $this->resolvedGlobals;
  9. }
  1. /**
  2. * @return iterable<scalar|\Stringable|null>
  3. */
  4. public function yield(array $context, array $blocks = []): iterable
  5. {
  6. $context += $this->env->getGlobals();
  7. $blocks = array_merge($this->blocks, $blocks);
  8. try {
  9. yield from $this->doDisplay($context, $blocks);
  10. } catch (Error $e) {
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = []): void
  4. {
  5. foreach ($this->yield($context, $blocks) as $data) {
  6. echo $data;
  7. }
  8. }
  9. public function render(array $context): string
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Throwable $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. yield from $this->template->yieldBlock($name, $context);
  2. }
  3. public function render(array $context = []): string
  4. {
  5. return $this->template->render($context);
  6. }
  7. /**
  8. * @return void
  9. */
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = []): string
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
  1. // Render and return
  2. $renderingTemplate = $this->_renderingTemplate;
  3. $this->_renderingTemplate = $template;
  4. try {
  5. $output = $this->getTwig()->render($template, $variables);
  6. } finally {
  7. $this->_renderingTemplate = $renderingTemplate;
  8. $this->setTemplateMode($oldTemplateMode);
  9. }
  1. $isRenderingPageTemplate = $this->_isRenderingPageTemplate;
  2. $this->_isRenderingPageTemplate = true;
  3. try {
  4. $this->beginPage();
  5. echo $this->renderTemplate($template, $variables);
  6. $this->endPage();
  7. } finally {
  8. $this->_isRenderingPageTemplate = $isRenderingPageTemplate;
  9. $this->setTemplateMode($oldTemplateMode);
  10. $output = ob_get_clean();
View->renderPageTemplate('@components/1-particles/icon/icon.twig', array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({ id: id, class: [\'icon\', "icon--#{icon}", class ?? \'\'], viewBox: viewBox ??? \'0 0 200 200\', role: hasDescription ? \'img\', \'aria-hidden\': not hasDescription ? \'true\', \'aria-labelledby\': hasDescription ? { ("#{id}-title"): title, ("#{id}-description"): description, },}, attrs ?? {}) }}> {%- if title -%} <title id="{{ id }}-title">{{ title }}</title> {%- endif -%} {%- if description -%} <desc id="{{ id }}-description">{{ description }}</desc> {%- endif -%} <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))), 'site') in /Users/dennis/Projekte/zplane-licensing/src/module/Console/Controller/ComponentController.php (line 42)
  1. function (RegisterTemplateRootsEvent $event) {
  2. $event->roots['@components'] = Craft::getAlias('@root/src/components');
  3. },
  4. );
  5. Console::stdout(Craft::$app->getView()->renderPageTemplate(
  6. "@components/{$template}",
  7. $context,
  8. View::TEMPLATE_MODE_SITE,
  9. ));
  10. } catch (\Throwable $exception) {
ComponentController->actionRender('1-particles/icon/icon.twig')
  1. Yii::debug('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__);
  2. if (Yii::$app->requestedParams === null) {
  3. Yii::$app->requestedParams = $args;
  4. }
  5. return call_user_func_array([$this->controller, $this->actionMethod], $args);
  6. }
  7. }
  1. $result = null;
  2. if ($runAction && $this->beforeAction($action)) {
  3. // run the action
  4. $result = $action->runWithParams($params);
  5. $result = $this->afterAction($action, $result);
  6. // call afterAction on modules
  7. foreach ($modules as $module) {
  1. if ($this->help) {
  2. $route = $this->getUniqueId() . '/' . $id;
  3. return Yii::$app->runAction('help', [$route]);
  4. }
  5. return parent::runAction($id, $params);
  6. }
  7. /**
  8. * Binds the parameters to the action.
  9. * This method is invoked by [[Action]] when it begins to run with the given parameters.
  1. public function runAction($id, $params = [])
  2. {
  3. try {
  4. // *should* only be an int, but there are exceptions :/
  5. /** @var int|null $response */
  6. $response = parent::runAction($id, $params);
  7. return $response ?? ExitCode::OK;
  8. } finally {
  9. if (isset($this->isolationMutexName)) {
  10. Craft::$app->getMutex()->release($this->isolationMutexName);
  11. }
  1. * @inheritdoc
  2. */
  3. public function runAction($id, $params = []): int
  4. {
  5. $this->_actionId = $id;
  6. $result = $this->traitRunAction($id, $params);
  7. $this->_actionId = null;
  8. return $result;
  9. }
  10. /**
  1. * @phpstan-var Controller<$this> $controller
  2. */
  3. list($controller, $actionID) = $parts;
  4. $oldController = Yii::$app->controller;
  5. Yii::$app->controller = $controller;
  6. $result = $controller->runAction($actionID, $params);
  7. if ($oldController !== null) {
  8. Yii::$app->controller = $oldController;
  9. }
  10. return $result;
  1. * @throws Exception if the route is invalid
  2. */
  3. public function runAction($route, $params = [])
  4. {
  5. try {
  6. $res = parent::runAction($route, $params);
  7. return is_object($res) ? $res : (int) $res;
  8. } catch (InvalidRouteException $e) {
  9. throw new UnknownCommandException($route, $this, 0, $e);
  10. }
  11. }
  1. }
  2. Console::outputWarning("Craft can’t fetch the `$infoTable` table row." . ($e ? PHP_EOL . 'Exception: ' . $e->getMessage() : ''), false);
  3. }
  4. }
  5. return parent::runAction($route, $params);
  6. }
  7. /**
  8. * @inheritdoc
  9. */
  1. */
  2. public function handleRequest($request)
  3. {
  4. list($route, $params) = $request->resolve();
  5. $this->requestedRoute = $route;
  6. $result = $this->runAction($route, $params);
  7. if ($result instanceof Response) {
  8. return $result;
  9. }
  10. $response = $this->getResponse();
  1. public function handleRequest($request)
  2. {
  3. // Disable read/write splitting for all console requests
  4. $this->getDb()->enableReplicas = false;
  5. return parent::handleRequest($request);
  6. }
  7. /**
  8. * Returns the configuration of the built-in commands.
  9. *
  1. try {
  2. $this->state = self::STATE_BEFORE_REQUEST;
  3. $this->trigger(self::EVENT_BEFORE_REQUEST);
  4. $this->state = self::STATE_HANDLING_REQUEST;
  5. $response = $this->handleRequest($this->getRequest());
  6. $this->state = self::STATE_AFTER_REQUEST;
  7. $this->trigger(self::EVENT_AFTER_REQUEST);
  8. $this->state = self::STATE_SENDING_RESPONSE;
Application->run() in /Users/dennis/Projekte/zplane-licensing/craft (line 15)
  1. // Load and run Craft
  2. /** @var craft\console\Application $app */
  3. $app = require CRAFT_VENDOR_PATH . '/craftcms/cms/bootstrap/console.php';
  4. $exitCode = $app->run();
  5. exit($exitCode);

Stack Trace

ErrorException
yii\base\ErrorException:
filemtime(): stat failed for /Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php

  at /Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:371
  at yii\base\ErrorHandler->handleError(2, 'filemtime(): stat failed for /Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php', '/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php', 371)
  at filemtime('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php')
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:371)
  at Craft::{closure}('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php')
  at call_user_func(object(Closure), '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php')
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/helpers/BaseFileHelper.php:664)
  at yii\helpers\BaseFileHelper::filterPath('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c88dac3.92643628.php', array('filter' => object(Closure), 'basePath' => '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes', 'caseSensitive' => true))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/helpers/FileHelper.php:607)
  at craft\helpers\FileHelper::clearDirectory('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes', array('filter' => object(Closure), 'basePath' => '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes', 'caseSensitive' => true))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:365)
  at Craft::_generateCustomFieldBehavior(array('caption', 'copyright', 'description', 'headline', 'hidden', 'htmlCode', 'hyperButton', 'hyperLink', 'hyperLinks', 'image', 'images', 'lightswitch', 'linkIcon', 'linkIcon', 'linkIcon', 'linkIcon', 'linkIcon', 'monospacedPlainText', 'multiLinePlainText', 'noarchive', 'noindex', 'ogDescription', 'ogImage', 'paragraph', 'paragraphs', 'plainText', 'seoTitle', 'siteIcon', 'thumbnail'), array(), array('caption' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'copyright' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'description' => array('string' => true, 'null' => true), 'headline' => array('string' => true, 'null' => true), 'hidden' => array('bool' => true), 'htmlCode' => array('mixed' => true), 'hyperButton' => array('\verbb\hyper\models\LinkCollection' => true, 'null' => true), 'hyperLink' => array('\verbb\hyper\models\LinkCollection' => true, 'null' => true), 'hyperLinks' => array('\verbb\hyper\models\LinkCollection' => true, 'null' => true), 'image' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true), 'images' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true), 'lightswitch' => array('bool' => true), 'linkIcon' => array('string' => true, 'null' => true), 'monospacedPlainText' => array('string' => true, 'null' => true), 'multiLinePlainText' => array('string' => true, 'null' => true), 'noarchive' => array('bool' => true), 'noindex' => array('bool' => true), 'ogDescription' => array('string' => true, 'null' => true), 'ogImage' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true), 'paragraph' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'paragraphs' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'plainText' => array('string' => true, 'null' => true), 'seoTitle' => array('string' => true, 'null' => true), 'siteIcon' => array('string' => true, 'null' => true), 'thumbnail' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true)), '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx.php', true, false)
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:271)
  at Craft::_autoloadCustomFieldBehavior()
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:203)
  at Craft::autoload('craft\\behaviors\\CustomFieldBehavior')
  at ReflectionClass->__construct('craft\\behaviors\\CustomFieldBehavior')
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/di/Container.php:536)
  at yii\di\Container->getDependencies('craft\\behaviors\\CustomFieldBehavior')
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/di/Container.php:406)
  at yii\di\Container->build('craft\\behaviors\\CustomFieldBehavior', array(), array('hasMethods' => true))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/di/Container.php:180)
  at yii\di\Container->get('craft\\behaviors\\CustomFieldBehavior', array(), array('hasMethods' => true))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/BaseYii.php:380)
  at yii\BaseYii::createObject(array('hasMethods' => true))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Component.php:795)
  at yii\base\Component->attachBehaviorInternal('customFields', array('class' => 'craft\\behaviors\\CustomFieldBehavior', 'hasMethods' => true))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Component.php:775)
  at yii\base\Component->ensureBehaviors()
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Component.php:485)
  at yii\base\Component->hasEventHandlers('init')
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/db/Query.php:55)
  at craft\db\Query->init()
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/BaseObject.php:112)
  at yii\base\BaseObject->__construct(array('select' => array('**' => '**')))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/elements/db/ElementQuery.php:626)
  at craft\elements\db\ElementQuery->__construct('craft\\elements\\GlobalSet')
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/elements/GlobalSet.php:139)
  at craft\elements\GlobalSet::find()
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/services/Globals.php:554)
  at craft\services\Globals->_allSets(1)
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/services/Globals.php:127)
  at craft\services\Globals->getAllSets()
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/web/twig/GlobalsExtension.php:28)
  at craft\web\twig\GlobalsExtension->getGlobals()
     (/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/ExtensionSet.php:359)
  at Twig\ExtensionSet->getGlobals()
     (/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Environment.php:900)
  at Twig\Environment->getGlobals()
     (/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Template.php:398)
  at Twig\Template->yield(array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({  id: id,  class: [\'icon\', "icon--#{icon}", class ?? \'\'],  viewBox: viewBox ??? \'0 0 200 200\',  role: hasDescription ? \'img\',  \'aria-hidden\': not hasDescription ? \'true\',  \'aria-labelledby\': hasDescription ? {    ("#{id}-title"): title,    ("#{id}-description"): description,  },}, attrs ?? {}) }}>  {%- if title -%}    <title id="{{ id }}-title">{{ title }}</title>  {%- endif -%}  {%- if description -%}    <desc id="{{ id }}-description">{{ description }}</desc>  {%- endif -%}  <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))), array())
     (/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Template.php:358)
  at Twig\Template->display(array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({  id: id,  class: [\'icon\', "icon--#{icon}", class ?? \'\'],  viewBox: viewBox ??? \'0 0 200 200\',  role: hasDescription ? \'img\',  \'aria-hidden\': not hasDescription ? \'true\',  \'aria-labelledby\': hasDescription ? {    ("#{id}-title"): title,    ("#{id}-description"): description,  },}, attrs ?? {}) }}>  {%- if title -%}    <title id="{{ id }}-title">{{ title }}</title>  {%- endif -%}  {%- if description -%}    <desc id="{{ id }}-description">{{ description }}</desc>  {%- endif -%}  <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
     (/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Template.php:373)
  at Twig\Template->render(array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({  id: id,  class: [\'icon\', "icon--#{icon}", class ?? \'\'],  viewBox: viewBox ??? \'0 0 200 200\',  role: hasDescription ? \'img\',  \'aria-hidden\': not hasDescription ? \'true\',  \'aria-labelledby\': hasDescription ? {    ("#{id}-title"): title,    ("#{id}-description"): description,  },}, attrs ?? {}) }}>  {%- if title -%}    <title id="{{ id }}-title">{{ title }}</title>  {%- endif -%}  {%- if description -%}    <desc id="{{ id }}-description">{{ description }}</desc>  {%- endif -%}  <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
     (/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({  id: id,  class: [\'icon\', "icon--#{icon}", class ?? \'\'],  viewBox: viewBox ??? \'0 0 200 200\',  role: hasDescription ? \'img\',  \'aria-hidden\': not hasDescription ? \'true\',  \'aria-labelledby\': hasDescription ? {    ("#{id}-title"): title,    ("#{id}-description"): description,  },}, attrs ?? {}) }}>  {%- if title -%}    <title id="{{ id }}-title">{{ title }}</title>  {%- endif -%}  {%- if description -%}    <desc id="{{ id }}-description">{{ description }}</desc>  {%- endif -%}  <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
     (/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Environment.php:333)
  at Twig\Environment->render('@components/1-particles/icon/icon.twig', array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({  id: id,  class: [\'icon\', "icon--#{icon}", class ?? \'\'],  viewBox: viewBox ??? \'0 0 200 200\',  role: hasDescription ? \'img\',  \'aria-hidden\': not hasDescription ? \'true\',  \'aria-labelledby\': hasDescription ? {    ("#{id}-title"): title,    ("#{id}-description"): description,  },}, attrs ?? {}) }}>  {%- if title -%}    <title id="{{ id }}-title">{{ title }}</title>  {%- endif -%}  {%- if description -%}    <desc id="{{ id }}-description">{{ description }}</desc>  {%- endif -%}  <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/web/View.php:590)
  at craft\web\View->renderTemplate('@components/1-particles/icon/icon.twig', array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({  id: id,  class: [\'icon\', "icon--#{icon}", class ?? \'\'],  viewBox: viewBox ??? \'0 0 200 200\',  role: hasDescription ? \'img\',  \'aria-hidden\': not hasDescription ? \'true\',  \'aria-labelledby\': hasDescription ? {    ("#{id}-title"): title,    ("#{id}-description"): description,  },}, attrs ?? {}) }}>  {%- if title -%}    <title id="{{ id }}-title">{{ title }}</title>  {%- endif -%}  {%- if description -%}    <desc id="{{ id }}-description">{{ description }}</desc>  {%- endif -%}  <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/web/View.php:662)
  at craft\web\View->renderPageTemplate('@components/1-particles/icon/icon.twig', array('_self' => array('id' => 'f4f5eecb9636c1d5c9ad845c0891c147', 'name' => 'default', 'handle' => 'icon--default', 'label' => 'Default', 'title' => 'Icon: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'icon', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'icon', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => '600805bf31bfd0080f5b80be4221d519', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/icon/icon.scss', 'relPath' => '1-particles/icon/icon.scss', 'base' => 'icon.scss', 'handle' => 'icon-scss', 'name' => 'icon.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/icon/icon.scss', 'isSCSS' => true))), 'content' => '{% set title = title ?? false %}{% set description = description ?? false %}{% set hasDescription = title or description %}{% set id = hasDescription ? (id ??? html_id(\'icon\')) -%}<svg {{ html_attributes({  id: id,  class: [\'icon\', "icon--#{icon}", class ?? \'\'],  viewBox: viewBox ??? \'0 0 200 200\',  role: hasDescription ? \'img\',  \'aria-hidden\': not hasDescription ? \'true\',  \'aria-labelledby\': hasDescription ? {    ("#{id}-title"): title,    ("#{id}-description"): description,  },}, attrs ?? {}) }}>  {%- if title -%}    <title id="{{ id }}-title">{{ title }}</title>  {%- endif -%}  {%- if description -%}    <desc id="{{ id }}-description">{{ description }}</desc>  {%- endif -%}  <use xlink:href="{{ asset(\'icons/icons.svg\', absoluteUrl=false) }}#{{ icon }}"></use></svg>{#- Prevent new line after icon -#}{{- \'\' -}}', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/icon', 'segments' => array('components', 'preview', 'icon'), 'params' => array('handle' => 'icon'), 'path' => '/components/preview/icon', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))), 'site')
     (/Users/dennis/Projekte/zplane-licensing/src/module/Console/Controller/ComponentController.php:42)
  at ZplaneLicensing\Console\Controller\ComponentController->actionRender('1-particles/icon/icon.twig')
  at call_user_func_array(array(object(ComponentController), 'actionRender'), array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/InlineAction.php:66)
  at yii\base\InlineAction->runWithParams(array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Controller.php:197)
  at yii\base\Controller->runAction('render', array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/console/Controller.php:186)
  at yii\console\Controller->runAction('render', array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/ControllerTrait.php:88)
  at craft\console\Controller->traitRunAction('render', array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/Controller.php:217)
  at craft\console\Controller->runAction('render', array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Module.php:554)
  at yii\base\Module->runAction('zplane-licensing/component/render', array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/console/Application.php:183)
  at yii\console\Application->runAction('zplane-licensing/component/render', array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/Application.php:91)
  at craft\console\Application->runAction('zplane-licensing/component/render', array('1-particles/icon/icon.twig'))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/console/Application.php:150)
  at yii\console\Application->handleRequest(object(Request))
     (/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/Application.php:122)
  at craft\console\Application->handleRequest(object(Request))
     (/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Application.php:391)
  at yii\base\Application->run()
     (/Users/dennis/Projekte/zplane-licensing/craft:15)