https://mirai-kanban.com/ecshop/products/list?category_id=20

ErrorController

Request

GET Parameters

Key Value
category_id
"20"
pageno
""

POST Parameters

No POST parameters

Uploaded Files

No files were uploaded

Request Attributes

Key Value
_controller
"error_controller"
_stopwatch_token
"301cd4"
exception
Twig\Error\RuntimeError {#12348
  -lineno: 201
  -name: "Product/list.twig"
  -rawMessage: "Neither the property "order_text1" nor one of the methods "order_text1()", "getorder_text1()"/"isorder_text1()"/"hasorder_text1()" or "__call()" exist and have public access in class "Symfony\Component\Form\FormView"."
  -sourcePath: "/home/atplus4/mirai-kanban.com/public_html/ecshop/app/template/default/Product/list.twig"
  -sourceCode: """
    {#\n
    This file is part of EC-CUBE\n
    \n
    Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.\n
    \n
    http://www.ec-cube.co.jp/\n
    \n
    For the full copyright and license information, please view the LICENSE\n
    file that was distributed with this source code.\n
    #}\n
    {% extends 'default_frame.twig' %}\n
    \n
    {% set body_class = 'product_page' %}\n
    \n
    {% block javascript %}\n
    <script>\n
        eccube.productsClassCategories = {\n
    {% for Product in pagination %}\n
    "{{ Product.id|escape('js') }}": {{ class_categories_as_json(Product)|raw }}{% if loop.last == false %}, {% endif %}\n
    {% endfor %}\n
    };\n
    \n
    $(function() {\n
    \n
    // 表示件数を変更\n
    $('.disp-number').change(function() {\n
        var dispNumber = $(this).val();\n
        $('#disp_number').val(dispNumber);\n
        $('#pageno').val(1);\n
        $("#form1").submit();\n
    });\n
    \n
    // 並び順を変更\n
    $('.order-by').change(function() {\n
        var orderBy = $(this).val();\n
        $('#orderby').val(orderBy);\n
        $('#pageno').val(1);\n
        $("#form1").submit();\n
    });\n
    \n
    $('.add-cart').on('click', function(e) {\n
        var $form = $(this).parents('li').find('form');\n
    \n
        // 個数フォームのチェック\n
        var $quantity = $form.parent().find('.quantity');\n
        if ($quantity.val() < 1) {\n
            $quantity[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');\n
            setTimeout(function() {\n
                loadingOverlay('hide');\n
            }, 100);\n
            return true;\n
        } else {\n
            $quantity[0].setCustomValidity('');\n
        }\n
        e.preventDefault();\n
        $.ajax({\n
            url: $form.attr('action'),\n
            type: $form.attr('method'),\n
            data: $form.serialize(),\n
            dataType: 'json',\n
            beforeSend: function(xhr, settings) {\n
                // Buttonを無効にする\n
                $('.add-cart').prop('disabled', true);\n
            }\n
        }).done(function(data) {\n
            // レスポンス内のメッセージをalertで表示\n
            $.each(data.messages, function() {\n
                $('#ec-modal-header').text(this);\n
            });\n
    \n
            $('.ec-modal').show()\n
    \n
            // カートブロックを更新する\n
            $.ajax({\n
                url: '{{ url('block_cart') }}',\n
                type: 'GET',\n
                dataType: 'html'\n
            }).done(function(html) {\n
                $('.ec-headerRole__cart').html(html);\n
            });\n
        }).fail(function(data) {\n
            alert('{{ 'カートへの追加に失敗しました。'|trans }}');\n
        }).always(function(data) {\n
            // Buttonを有効にする\n
            $('.add-cart').prop('disabled', false);\n
        });\n
    });\n
    });\n
    \n
    $('.ec-modal-wrap').on('click', function(e) {\n
    // モーダル内の処理は外側にバブリングさせない\n
    e.stopPropagation();\n
    });\n
    $('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {\n
    $('.ec-modal').hide()\n
    });\n
    </script>\n
    {% endblock %}\n
    \n
    {% block main %}\n
        {% if search_form.category_id.vars.errors|length > 0 %}\n
            <div class="ec-searchnavRole">\n
                <p class="errormsg text-danger">{{ 'ご指定のカテゴリは存在しません'|trans }}</p>\n
            </div>\n
        {% else %}\n
            <div class="ec-searchnavRole">\n
                <form name="form1" id="form1" method="get" action="?">\n
                    {% for item in search_form %}\n
                        <input type="hidden" id="{{ item.vars.id }}"\n
                               name="{{ item.vars.full_name }}"\n
                               {% if item.vars.value is not empty %}value="{{ item.vars.value }}" {% endif %}/>\n
                    {% endfor %}\n
                </form>\n
                <div class="ec-searchnavRole__topicpath">\n
                    <ol class="ec-topicpath">\n
                        <li class="ec-topicpath__item"><a href="{{ url('product_list') }}">{{ '全て'|trans }}</a>\n
                        </li>\n
                        {% if Category is not null %}\n
                            {% for Path in Category.path %}\n
                                <li class="ec-topicpath__divider">|</li>\n
                                <li class="ec-topicpath__item{% if loop.last %}--active{% endif %}"><a\n
                                            href="{{ url('product_list') }}?category_id={{ Path.id }}">{{ Path.name }}</a>\n
                                </li>\n
                            {% endfor %}\n
                        {% endif %}\n
                        {% if search_form.vars.value and search_form.vars.value.name %}\n
                            <li class="ec-topicpath__divider">|</li>\n
                            <li class="ec-topicpath__item">{{ '「%name%」の検索結果'|trans({ '%name%': search_form.vars.value.name }) }}</li>\n
                        {% endif %}\n
                    </ol>\n
                </div>\n
                <div class="ec-searchnavRole__infos">\n
                    <div class="ec-searchnavRole__counter">\n
                        {% if pagination.totalItemCount > 0 %}\n
                            {{ '<span class="ec-font-bold">%count%件</span><span>の商品が見つかりました</span>'|trans({ '%count%': pagination.totalItemCount })|raw }}\n
                        {% else %}\n
                            <span>{{ 'お探しの商品は見つかりませんでした'|trans }}</span>\n
                        {% endif %}\n
                    </div>\n
                    {% if pagination.totalItemCount > 0 %}\n
                        <div class="ec-searchnavRole__actions">\n
                            <div class="ec-select">\n
                                {{ form_widget(search_form.disp_number, {'id': '', 'attr': {'class': 'disp-number'}}) }}\n
                                {{ form_widget(search_form.orderby, {'id': '', 'attr': {'class': 'order-by'}}) }}\n
                            </div>\n
                        </div>\n
                    {% endif %}\n
                </div>\n
            </div>\n
            {% if pagination.totalItemCount > 0 %}\n
                <div class="ec-shelfRole">\n
                    <ul class="ec-shelfGrid">\n
                        {% for Product in pagination %}\n
                            <li class="ec-shelfGrid__item">\n
                                <a href="{{ url('product_detail', {'id': Product.id}) }}">\n
                                    <p class="ec-shelfGrid__item-image">\n
                                        <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}"\n
                                             alt="{{ Product.name }}" {% if loop.index > 5 %} loading="lazy"{% endif %}>\n
                                    </p>\n
                                    <p>{{ Product.name }}</p>\n
                                    {% if Product.description_list %}\n
                                        <p>{{ Product.description_list|raw|nl2br }}</p>\n
                                    {% endif %}\n
                                    <p class="price02-default">\n
                                        {% if Product.hasProductClass %}\n
                                            {% if Product.getPrice02Min == Product.getPrice02Max %}\n
                                                {{ Product.getPrice02IncTaxMin|price }}\n
                                            {% else %}\n
                                                {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}\n
                                            {% endif %}\n
                                        {% else %}\n
                                            {{ Product.getPrice02IncTaxMin|price }}\n
                                        {% endif %}\n
                                    </p>\n
                                </a>\n
    \n
                                {% if Product.stock_find %}\n
                                    <div style="display:none;">\n
                                        {% set form = forms[Product.id] %}\n
                                        <form name="form{{ Product.id }}" id="productForm{{ Product.id }}"\n
                                              action="{{ url('product_add_cart', {id:Product.id}) }}" method="post">\n
                                            <div class="ec-productRole__actions">\n
                                                {% if form.classcategory_id1 is defined %}\n
                                                    <div class="ec-select">\n
                                                        {{ form_widget(form.classcategory_id1) }}\n
                                                        {{ form_errors(form.classcategory_id1) }}\n
                                                    </div>\n
                                                    {% if form.classcategory_id2 is defined %}\n
                                                        <div class="ec-select">\n
                                                            {{ form_widget(form.classcategory_id2) }}\n
                                                            {{ form_errors(form.classcategory_id2) }}\n
                                                        </div>\n
                                                    {% endif %}\n
                                                {% endif %}\n
                                                <div class="ec-numberInput"><span>{{ '数量'|trans }}</span>\n
                                                    {{ form_widget(form.quantity, {'attr': {'class': 'quantity'}}) }}\n
                                                    {{ form_errors(form.quantity) }}\n
                                                </div>\n
                                                <div style="display:none;">\n
                                                    <div class="ec-numberInput"><span>上文字</span>\n
                                                        {{ form_widget(form.order_text1) }}\n
                                                        {{ form_errors(form.order_text1) }}\n
                                                    </div>\n
    \n
                                                    <div class="ec-numberInput"><span>文字</span>\n
                                                        {{ form_widget(form.order_text2) }}\n
                                                        {{ form_errors(form.order_text2) }}\n
                                                    </div>\n
    \n
                                                    <div class="ec-numberInput"><span>下文字</span>\n
                                                        {{ form_widget(form.order_text3) }}\n
                                                        {{ form_errors(form.order_text3) }}\n
                                                    </div>\n
                                                    <div class="ec-numberInput"><span>外枠の色</span>\n
                                                        {{ form_widget(form.order_color1) }}\n
                                                        {{ form_errors(form.order_color1) }}\n
                                                    </div>\n
    \n
                                                    <div class="ec-numberInput"><span>文字の色</span>\n
                                                        {{ form_widget(form.order_color2) }}\n
                                                        {{ form_errors(form.order_color2) }}\n
                                                    </div>\n
    \n
                                                    <div class="ec-numberInput"><span>書体</span>\n
                                                        {{ form_widget(form.order_font) }}\n
                                                        {{ form_errors(form.order_font) }}\n
                                                    </div>\n
                                                </div>\n
                                            </div>\n
                                            {{ form_rest(form) }}\n
                                        </form>\n
                                        <div class="ec-productRole__btn">\n
                                            <button type="submit" class="ec-blockBtn--action add-cart"\n
                                                    data-cartid="{{ Product.id }}" form="productForm{{ Product.id }}">\n
                                                {{ 'カートに入れる'|trans }}\n
                                            </button>\n
                                        </div>\n
                                    </div>\n
                                {% else %}\n
                                    <div class="ec-productRole__btn">\n
                                        <button type="button" class="ec-blockBtn--action" disabled="disabled">\n
                                            {{ 'ただいま品切れ中です。'|trans }}\n
                                        </button>\n
                                    </div>\n
                                {% endif %}\n
                            </li>\n
                        {% endfor %}\n
                    </ul>\n
                </div>\n
                <div class="ec-modal">\n
                    <div class="ec-modal-overlay">\n
                        <div class="ec-modal-wrap">\n
                            <span class="ec-modal-close"><span class="ec-icon"><img\n
                                            src="{{ asset('assets/icon/cross-dark.svg') }}" alt=""/></span></span>\n
                            <div id="ec-modal-header" class="text-center">{{ 'カートに追加しました。'|trans }}</div>\n
                            <div class="ec-modal-box">\n
                                <div class="ec-role">\n
                                    <span class="ec-inlineBtn--cancel">{{ 'お買い物を続ける'|trans }}</span>\n
                                    <a href="{{ url('cart') }}" class="ec-inlineBtn--action">{{ 'カートへ進む'|trans }}</a>\n
                                </div>\n
                            </div>\n
                        </div>\n
                    </div>\n
                </div>\n
                <div class="ec-pagerRole">\n
                    {% include "pager.twig" with {'pages': pagination.paginationData} %}\n
                </div>\n
            {% endif %}\n
        {% endif %}\n
        <script>\n
            const font_names = [\n
                { 'name': 'M PLUS Rounded 1c', 'weight': '400'},\n
                { 'name': 'RocknRoll One', 'weight': '400'},\n
                { 'name': 'Dela Gothic One', 'weight': '400'},\n
                { 'name': 'M PLUS Rounded 1c', 'weight': '900'},\n
    \n
                { 'name': 'Potta One', 'weight': '400'},\n
                { 'name': 'Kaisei Tokumin', 'weight': '800'},\n
                { 'name': 'M PLUS 1p', 'weight': '900'},\n
                { 'name': 'Hachi Maru Pop', 'weight': '400'},\n
            ];\n
    \n
    \n
            font_names.map(  (item) => {\n
                 uchiwaGetFont( item.name );\n
            })\n
    \n
            async function uchiwaGetFont(fontName) {\n
                const urlFamilyName = fontName.replace(/ /g, "+");\n
                const googleApiUrl = `https://fonts.googleapis.com/css?family=${urlFamilyName}`;\n
    \n
                const response = await fetch(googleApiUrl);\n
                if (response.ok) {\n
                    // url()の中身のURLだけ抽出\n
                    const cssFontFace = await response.text();\n
                    const matchUrls = cssFontFace.match(/url\(.+?\)/g);\n
                    if (!matchUrls) throw new Error("フォントが見つかりませんでした");\n
    \n
                    for (const url of matchUrls) {\n
                        const font = new FontFace(fontName, url);\n
                        await font.load();\n
                        document.fonts.add(font);\n
                    }\n
                    // console.log('get font : ', fontName)\n
                } else {\n
                    console.log('error get font fetch', response);\n
                }\n
            }\n
        </script>\n
    {% endblock %}\n
    """
  #message: "Neither the property "order_text1" nor one of the methods "order_text1()", "getorder_text1()"/"isorder_text1()"/"hasorder_text1()" or "__call()" exist and have public access in class "Symfony\Component\Form\FormView"."
  #code: 0
  #file: "/home/atplus4/mirai-kanban.com/public_html/ecshop/app/template/default/Product/list.twig"
  #line: 201
  trace: {
    /home/atplus4/mirai-kanban.com/public_html/ecshop/app/template/default/Product/list.twig:201 {
      twig_get_attribute(Environment $env, Source $source, $object, $item, array $arguments = [], $type = 'any', $isDefinedTest = false, $ignoreStrictCheck = false, $sandboxed = false, int $lineno = -1) …
      › <div class="ec-numberInput"><span>上文字</span>    {{ form_widget(form.order_text1) }}    {{ form_errors(form.order_text1) }}
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/app/template/default/Product/list.twig:201 {
      __TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489->block_main($context, array $blocks = []) …
      › <div class="ec-numberInput"><span>上文字</span>    {{ form_widget(form.order_text1) }}    {{ form_errors(form.order_text1) }}
      arguments: {
        $env: Twig\Environment {#500 …}
        $source: Twig\Source {#10035 …}
        $object: Symfony\Component\Form\FormView {#6496 …}
        $item: "order_text1"
        $arguments: []
        $type: "any"
        $isDefinedTest: false
        $ignoreStrictCheck: false
        $sandboxed: false
        $lineno: 201
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php:182 {
      Twig\Template->displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $templateContext = null) …
      › try {    $template->$block($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …21]
        $blocks: [ …3]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/5e/5e5b7ffac0c90cc23dd4c282e1d55b585e8f1f438823265849f3b2154aa8ecc1.php:296 {
      __TwigTemplate_6a611fa48a0db7adf032a056295903b7247d2c19ff85f9993c708bdba03973bd->doDisplay(array $context, array $blocks = []) …
      › echo "            ";$this->displayBlock('main', $context, $blocks);// line 112
      arguments: {
        $name: "main"
        $context: [ …15]
        $blocks: [ …3]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php:405 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …14]
        $blocks: [ …2]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php:378 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …2]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php:41 {
      Eccube\Twig\Template->display(array $context, array $blocks = []) …
      › } else {    parent::display($event->getParameters(), $blocks);}
      arguments: {
        $context: [ …5]
        $blocks: []
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/d0/d01fd5e8dec62ca78cbf8164bca422500a677f031f0cab48eeb7e5b0590e45d2.php:52 {
      __TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("default_frame.twig", "Product/list.twig", 11);$this->parent->display($context, array_merge($this->blocks, $blocks));arguments: {
        $context: [ …14]
        $blocks: [ …2]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php:405 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …14]
        $blocks: [ …2]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php:378 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …2]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php:41 {
      Eccube\Twig\Template->display(array $context, array $blocks = []) …
      › } else {    parent::display($event->getParameters(), $blocks);}
      arguments: {
        $context: [ …5]
        $blocks: []
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php:390 {
      Twig\Template->render(array $context) …
      › try {    $this->display($context);} catch (\Throwable $e) {
      arguments: {
        $context: [ …5]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php:45 {
      Twig\TemplateWrapper->render(array $context = []): string …
      ›     // as it should only be used by internal code    return $this->template->render($context, \func_get_args()[1] ?? []);}
      arguments: {
        $context: [ …5]
        ...: {
          []
        }
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php:318 {
      Twig\Environment->render($name, array $context = []) …
      › {    return $this->load($name)->render($context);}
      arguments: {
        $context: [ …5]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php:115 {
      Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener->onKernelView(KernelEvent $event) …
      › } else {    $event->setResponse(new Response($this->twig->render($template->getTemplate(), $parameters)));}
      arguments: {
        $name: "Product/list.twig"
        $context: [ …5]
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117 {
      Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
      › 
      › ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#5002 …}
        ...: {
          "kernel.view"
          Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#624 …}
        }
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php:230 {
      Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
      ›     }    $listener($event, $eventName, $this);}
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#5002 …}
        $eventName: "kernel.view"
        $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#624 …}
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php:59 {
      Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, string $eventName = null): object …
      › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
      arguments: {
        $listeners: [ …1]
        $eventName: "kernel.view"
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#5002 …}
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154 {
      Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, string $eventName = null): object …
      › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#5002 …}
        $eventName: "kernel.view"
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php:168 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › $event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#5002 …}
        $eventName: "kernel.view"
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php:75 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->handleRaw($request, $type);} catch (\Exception $e) {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#4 …}
        $type: 1
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php:202 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#4 …}
        $type: 1
        $catch: true
      }
    }
    /home/atplus4/mirai-kanban.com/public_html/ecshop/index.php:85 {$kernel = new Kernel($env, $debug);$response = $kernel->handle($request);$response->send();
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#4 …}
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Logger {#512 …8}

Request Headers

Header Value
accept
"*/*"
authorization
""
connection
"close"
from
"bingbot(at)microsoft.com"
host
"mirai-kanban.com"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36"
x-accel-expires
"60"
x-failure-cache-time
"0"
x-file-type
"normal"
x-forwarded-for
"40.77.167.32"
x-forwarded-host
"mirai-kanban.com"
x-forwarded-port
"443"
x-forwarded-proto
"https"
x-forwarded-ssl
"on"
x-php-fpm-version
"74"
x-php-ob-level
"1"
x-real-ip
"40.77.167.32"
x-server-address
"183.90.246.7"
x-ua-device
"pc"
x-wp-access
"0"

Request Content

Request content not available (it was retrieved as a resource).

Response

Response Headers

Header Value
cache-control
"no-cache, private"
content-type
"text/html; charset=UTF-8"
date
"Tue, 26 Nov 2024 00:29:20 GMT"
set-cookie
"maintenance_token=deleted; expires=Mon, 27-Nov-2023 00:29:19 GMT; Max-Age=0; path=/; httponly"
x-debug-exception
"Neither%20the%20property%20%22order_text1%22%20nor%20one%20of%20the%20methods%20%22order_text1%28%29%22%2C%20%22getorder_text1%28%29%22%2F%22isorder_text1%28%29%22%2F%22hasorder_text1%28%29%22%20or%20%22__call%28%29%22%20exist%20and%20have%20public%20access%20in%20class%20%22Symfony%5CComponent%5CForm%5CFormView%22."
x-debug-exception-file
"%2Fhome%2Fatplus4%2Fmirai-kanban.com%2Fpublic_html%2Fecshop%2Fapp%2Ftemplate%2Fdefault%2FProduct%2Flist.twig:201"
x-debug-token
"406fe3"

Cookies

Request Cookies

No request cookies

Response Cookies

Key Value
maintenance_token
Symfony\Component\HttpFoundation\Cookie {#12631
  #name: "maintenance_token"
  #value: null
  #domain: null
  #expire: 1
  #path: "/"
  #secure: false
  #httpOnly: true
  -raw: false
  -sameSite: null
  -secureDefault: false
}

Session 12

Session Metadata

Key Value
Created
"Tue, 26 Nov 24 09:29:19 +0900"
Last used
"Tue, 26 Nov 24 09:29:19 +0900"
Lifetime
0

Session Attributes

Attribute Value
_csrf/https-Eccube\Form\Type\AddCartType
"6KtEsqbHydBHmxxnUsl68m0LbUh5HOLtB6DUgk5aVNA"
_csrf/https-_token
"u5pLK0Bx-Lr25x0WJ3Zy0z2YrKMZxMt8R05ZGja0xuI"

Session Usage

12 Usages
Stateless check enabled
Usage
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:44
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-core/Authentication/Token/Storage/UsageTrackingTokenStorage.php"
    "line" => 44
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Log/Processor/TokenProcessor.php"
    "line" => 34
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/monolog/monolog/src/Monolog/Logger.php"
    "line" => 368
    "function" => "__invoke"
    "class" => "Eccube\Log\Processor\TokenProcessor"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/monolog/monolog/src/Monolog/Logger.php"
    "line" => 574
    "function" => "addRecord"
    "class" => "Monolog\Logger"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-http/Authentication/AuthenticatorManager.php"
    "line" => 99
    "function" => "debug"
    "class" => "Monolog\Logger"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php"
    "line" => 34
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authentication\AuthenticatorManager"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php"
    "line" => 39
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php"
    "line" => 38
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-http/Firewall/AbstractListener.php"
    "line" => 25
    "function" => "supports"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php"
    "line" => 73
    "function" => "__invoke"
    "class" => "Symfony\Component\Security\Http\Firewall\AbstractListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-http/Firewall.php"
    "line" => 92
    "function" => "callListeners"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelRequest"
    "class" => "Symfony\Component\Security\Http\Firewall"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 139
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:98
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 98
    "function" => "start"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:101
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 101
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:88
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 88
    "function" => "set"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 77
    "function" => "setToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:71
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 71
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 73
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:75
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 75
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 73
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 72
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
    "line" => 86
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
    "line" => 80
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
    "type" => "::"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
    "line" => 85
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
    "line" => 49
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
    "line" => 46
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/9d/9de9f3fd62bca330f4e3fcf7db71a5f1f975ebf2431e69f3c90ebe255afedadc.php"
    "line" => 73
    "function" => "renderFragment"
    "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c45911b33fdd98256b0f8be8deda470fa2720c2a65cb1fe97333196a9be2789b"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/1b/1b9f839eec9cb306d0d271a7bb75ad709b1b502ce5cbf0148226320d01794e46.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_9ae92c52552a7f107364fd0693d768b3bb7f6eed79a4e24ab05caff21c4af8ab"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/5e/5e5b7ffac0c90cc23dd4c282e1d55b585e8f1f438823265849f3b2154aa8ecc1.php"
    "line" => 216
    "function" => "twig_include"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6a611fa48a0db7adf032a056295903b7247d2c19ff85f9993c708bdba03973bd"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/d0/d01fd5e8dec62ca78cbf8164bca422500a677f031f0cab48eeb7e5b0590e45d2.php"
    "line" => 52
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php"
    "line" => 115
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelView"
    "class" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 168
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:73
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 73
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
    "line" => 86
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
    "line" => 80
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
    "type" => "::"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
    "line" => 85
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
    "line" => 49
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
    "line" => 46
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/9d/9de9f3fd62bca330f4e3fcf7db71a5f1f975ebf2431e69f3c90ebe255afedadc.php"
    "line" => 73
    "function" => "renderFragment"
    "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c45911b33fdd98256b0f8be8deda470fa2720c2a65cb1fe97333196a9be2789b"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/1b/1b9f839eec9cb306d0d271a7bb75ad709b1b502ce5cbf0148226320d01794e46.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_9ae92c52552a7f107364fd0693d768b3bb7f6eed79a4e24ab05caff21c4af8ab"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/5e/5e5b7ffac0c90cc23dd4c282e1d55b585e8f1f438823265849f3b2154aa8ecc1.php"
    "line" => 216
    "function" => "twig_include"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6a611fa48a0db7adf032a056295903b7247d2c19ff85f9993c708bdba03973bd"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/d0/d01fd5e8dec62ca78cbf8164bca422500a677f031f0cab48eeb7e5b0590e45d2.php"
    "line" => 52
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php"
    "line" => 115
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelView"
    "class" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 168
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:74
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 74
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
    "line" => 86
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
    "line" => 80
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
    "type" => "::"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
    "line" => 85
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
    "line" => 49
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
    "line" => 46
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/9d/9de9f3fd62bca330f4e3fcf7db71a5f1f975ebf2431e69f3c90ebe255afedadc.php"
    "line" => 73
    "function" => "renderFragment"
    "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c45911b33fdd98256b0f8be8deda470fa2720c2a65cb1fe97333196a9be2789b"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/1b/1b9f839eec9cb306d0d271a7bb75ad709b1b502ce5cbf0148226320d01794e46.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_9ae92c52552a7f107364fd0693d768b3bb7f6eed79a4e24ab05caff21c4af8ab"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/5e/5e5b7ffac0c90cc23dd4c282e1d55b585e8f1f438823265849f3b2154aa8ecc1.php"
    "line" => 216
    "function" => "twig_include"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6a611fa48a0db7adf032a056295903b7247d2c19ff85f9993c708bdba03973bd"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/d0/d01fd5e8dec62ca78cbf8164bca422500a677f031f0cab48eeb7e5b0590e45d2.php"
    "line" => 52
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php"
    "line" => 115
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelView"
    "class" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 168
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:75
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 75
    "function" => "all"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
    "line" => 86
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
    "line" => 80
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
    "type" => "::"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
    "line" => 85
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
    "line" => 49
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
    "line" => 46
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/9d/9de9f3fd62bca330f4e3fcf7db71a5f1f975ebf2431e69f3c90ebe255afedadc.php"
    "line" => 73
    "function" => "renderFragment"
    "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c45911b33fdd98256b0f8be8deda470fa2720c2a65cb1fe97333196a9be2789b"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/1b/1b9f839eec9cb306d0d271a7bb75ad709b1b502ce5cbf0148226320d01794e46.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_9ae92c52552a7f107364fd0693d768b3bb7f6eed79a4e24ab05caff21c4af8ab"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/5e/5e5b7ffac0c90cc23dd4c282e1d55b585e8f1f438823265849f3b2154aa8ecc1.php"
    "line" => 216
    "function" => "twig_include"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6a611fa48a0db7adf032a056295903b7247d2c19ff85f9993c708bdba03973bd"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/d0/d01fd5e8dec62ca78cbf8164bca422500a677f031f0cab48eeb7e5b0590e45d2.php"
    "line" => 52
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php"
    "line" => 115
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelView"
    "class" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 168
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:76
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 76
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
    "line" => 86
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
    "line" => 80
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
    "type" => "::"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
    "line" => 85
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
    "line" => 49
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
    "line" => 46
    "function" => "render"
    "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/9d/9de9f3fd62bca330f4e3fcf7db71a5f1f975ebf2431e69f3c90ebe255afedadc.php"
    "line" => 73
    "function" => "renderFragment"
    "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c45911b33fdd98256b0f8be8deda470fa2720c2a65cb1fe97333196a9be2789b"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/1b/1b9f839eec9cb306d0d271a7bb75ad709b1b502ce5cbf0148226320d01794e46.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_9ae92c52552a7f107364fd0693d768b3bb7f6eed79a4e24ab05caff21c4af8ab"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/5e/5e5b7ffac0c90cc23dd4c282e1d55b585e8f1f438823265849f3b2154aa8ecc1.php"
    "line" => 216
    "function" => "twig_include"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6a611fa48a0db7adf032a056295903b7247d2c19ff85f9993c708bdba03973bd"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/d0/d01fd5e8dec62ca78cbf8164bca422500a677f031f0cab48eeb7e5b0590e45d2.php"
    "line" => 52
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php"
    "line" => 115
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelView"
    "class" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 168
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Eccube\Service\CartService:174
[
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Service/CartService.php"
    "line" => 174
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Service/CartService.php"
    "line" => 151
    "function" => "getSessionCarts"
    "class" => "Eccube\Service\CartService"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Extension/CartServiceExtension.php"
    "line" => 50
    "function" => "getCarts"
    "class" => "Eccube\Service\CartService"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/dd/ddd179d56802a8719d3717f816ac39fa01ef522731fbbe2542f28db792d059ec.php"
    "line" => 43
    "function" => "get_all_carts"
    "class" => "Eccube\Twig\Extension\CartServiceExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_7298e06656f8ed376c9cbe34ac7ce341c87c1e2d75d8c7b6731946a86e538672"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/9d/9de9f3fd62bca330f4e3fcf7db71a5f1f975ebf2431e69f3c90ebe255afedadc.php"
    "line" => 89
    "function" => "twig_include"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c45911b33fdd98256b0f8be8deda470fa2720c2a65cb1fe97333196a9be2789b"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/1b/1b9f839eec9cb306d0d271a7bb75ad709b1b502ce5cbf0148226320d01794e46.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_9ae92c52552a7f107364fd0693d768b3bb7f6eed79a4e24ab05caff21c4af8ab"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/5e/5e5b7ffac0c90cc23dd4c282e1d55b585e8f1f438823265849f3b2154aa8ecc1.php"
    "line" => 216
    "function" => "twig_include"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6a611fa48a0db7adf032a056295903b7247d2c19ff85f9993c708bdba03973bd"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/var/cache/dev/twig/d0/d01fd5e8dec62ca78cbf8164bca422500a677f031f0cab48eeb7e5b0590e45d2.php"
    "line" => 52
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_511cc2646943e54b67f44b36b3735f4bb609850ceb89f9f96721379a92149489"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php"
    "line" => 115
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelView"
    "class" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 168
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
(no data)

Defined as regular env variables

Key Value
APP_DEBUG
"1"
APP_ENV
"dev"
CONTEXT_DOCUMENT_ROOT
"/home/atplus4/mirai-kanban.com/public_html"
CONTEXT_PREFIX
""
DATABASE_CHARSET
"utf8mb4"
DATABASE_SERVER_VERSION
"57"
DATABASE_URL
"mysql://atplus4_ec2:10uuxocroc@mysql1501b.xserver.jp/atplus4_ec2"
DOCUMENT_ROOT
"/home/atplus4/mirai-kanban.com/public_html"
ECCUBE_ADMIN_ALLOW_HOSTS
"[]"
ECCUBE_ADMIN_ROUTE
"administrator"
ECCUBE_AUTH_MAGIC
"blordaf8ef75FMGvClPCvNgzUU3VABX"
ECCUBE_COOKIE_PATH
"/ecshop"
ECCUBE_CURRENCY
"JPY"
ECCUBE_FORCE_SSL
"0"
ECCUBE_LOCALE
"ja"
ECCUBE_TEMPLATE_CODE
"default"
ECCUBE_TIMEZONE
"Asia/Tokyo"
FCGI_ROLE
"RESPONDER"
FailureCacheTime
"0"
GATEWAY_INTERFACE
"CGI/1.1"
HOME
"/home/atplus4"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_AUTHORIZATION
""
HTTP_CONNECTION
"close"
HTTP_FROM
"bingbot(at)microsoft.com"
HTTP_HOST
"mirai-kanban.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36"
HTTP_X_ACCEL_EXPIRES
"60"
HTTP_X_FAILURE_CACHE_TIME
"0"
HTTP_X_FILE_TYPE
"normal"
HTTP_X_FORWARDED_FOR
"40.77.167.32"
HTTP_X_FORWARDED_HOST
"mirai-kanban.com"
HTTP_X_FORWARDED_PORT
"443"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_SSL
"on"
HTTP_X_PHP_FPM_VERSION
"74"
HTTP_X_REAL_IP
"40.77.167.32"
HTTP_X_SERVER_ADDRESS
"183.90.246.7"
HTTP_X_UA_DEVICE
"pc"
HTTP_X_WP_ACCESS
"0"
MAILER_DSN
"sendmail://localhost"
MEF_PROXY_ADDR
"183.90.246.7"
Ngx_Cache_NoCacheMode
"off"
Ngx_Cache_NormalFile
"1"
Ngx_Cache_StaticMode
"1"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
PHP_SELF
"/ecshop/index.php"
QUERY_STRING
"category_id=20"
REDIRECT_FailureCacheTime
"0"
REDIRECT_HTTPS
"on"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_MEF_PROXY_ADDR
"183.90.246.7"
REDIRECT_Ngx_Cache_NoCacheMode
"off"
REDIRECT_Ngx_Cache_NormalFile
"1"
REDIRECT_Ngx_Cache_StaticMode
"1"
REDIRECT_QUERY_STRING
"category_id=20"
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"Z0UWXwPFEUjLetNG0XQy9QAAAns"
REDIRECT_URL
"/ecshop/products/list"
REMOTE_ADDR
"40.77.167.32"
REMOTE_PORT
"59740"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_TIME
1732580959
REQUEST_TIME_FLOAT
1732580959.3206
REQUEST_URI
"/ecshop/products/list?category_id=20"
SCRIPT_FILENAME
"/home/atplus4/mirai-kanban.com/public_html/ecshop/index.php"
SCRIPT_NAME
"/ecshop/index.php"
SERVER_ADDR
"183.90.246.7"
SERVER_ADMIN
"webmaster@mirai-kanban.com"
SERVER_NAME
"mirai-kanban.com"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
UNIQUE_ID
"Z0UWXwPFEUjLetNG0XQy9QAAAns"
USER
"atplus4"

Parent Request

Return to parent request (token = 2c39a7)

Key Value
_controller
"Eccube\Controller\ProductController::index"
_firewall_context
"security.firewall.map.context.customer"
_remove_csp_headers
true
_route
"product_list"
_route_params
[]
_security_firewall_run
"_security_customer"
_stopwatch_token
"b3dca4"
_template
Sensio\Bundle\FrameworkExtraBundle\Configuration\Template {#3957
  #template: "Product/list.twig"
  -vars: []
  -streamable: false
  -owner: [
    Eccube\Controller\ProductController {#3668
      #purchaseFlow: Eccube\Service\PurchaseFlow\PurchaseFlow {#3669 …}
      #customerFavoriteProductRepository: Eccube\Repository\CustomerFavoriteProductRepository {#3675 …}
      #cartService: Customize\Service\CartService {#413 …}
      #productRepository: Eccube\Repository\ProductRepository {#1663 …}
      #BaseInfo: Eccube\Entity\BaseInfo {#3531 …}
      #helper: Symfony\Component\Security\Http\Authentication\AuthenticationUtils {#3859 …}
      #productListMaxRepository: Eccube\Repository\Master\ProductListMaxRepository {#3860 …}
      -title: ""
      #eccubeConfig: Eccube\Common\EccubeConfig {#557 …}
      #entityManager: ContainerYJVyOL3\EntityManager_9a5be93 {#410 …}
      #translator: Symfony\Component\Translation\DataCollectorTranslator {#692 …}
      #formFactory: Symfony\Component\Form\FormFactory {#3892 …}
      #eventDispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#624 …}
      #session: Symfony\Component\HttpFoundation\Session\Session {#655 …}
      #container: Symfony\Component\DependencyInjection\Argument\ServiceLocator {#3907 …}
    }
    "index"
  ]
}