Exceptions
Exception
ErrorException
in
app/Plugin/Api42/GraphQL/Types.php
(line 115)
'integer' => Type::int(),'decimal' => Type::float(),'datetimetz' => DateTimeType::dateTime(),'smallint' => Type::int(),'boolean' => Type::boolean(),][$fieldMapping['type']];if ($type) {return $fieldMapping['nullable'] ? $type : Type::nonNull($type);}
Types->convertFieldMappingToType(array('fieldName' => 'reserve_date', 'type' => 'date', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'reserve_date'))
in
app/Plugin/Api42/GraphQL/Types.php
(line 70)
return new ObjectType(['name' => (new \ReflectionClass($className))->getShortName(),'fields' => function () use ($className) {$classMetadata = $this->entityManager->getClassMetadata($className);$fields = array_reduce($classMetadata->fieldMappings, function ($acc, $mapping) use ($classMetadata) {$type = $this->convertFieldMappingToType($mapping);$fieldName = $mapping['fieldName'];$allowed = array_filter($this->allowLists, function (AllowList $al) use ($classMetadata, $fieldName) {return $al->isAllowed($classMetadata->name, $fieldName);});
Types->Plugin\Api42\GraphQL\{closure}(array('id' => object(NonNull), 'name' => object(NonNull), 'note' => object(StringType), 'description_list' => object(StringType), 'description_detail' => object(StringType), 'search_word' => object(StringType), 'free_area' => object(StringType), 'create_date' => object(NonNull), 'update_date' => object(NonNull)), array('fieldName' => 'reserve_date', 'type' => 'date', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'reserve_date'))
array_reduce(array('id' => array('fieldName' => 'id', 'type' => 'integer', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => false, 'precision' => null, 'options' => array('unsigned' => true), 'columnName' => 'id', 'id' => true), 'name' => array('fieldName' => 'name', 'type' => 'string', 'scale' => null, 'length' => 255, 'unique' => false, 'nullable' => false, 'precision' => null, 'columnName' => 'name'), 'note' => array('fieldName' => 'note', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'note'), 'description_list' => array('fieldName' => 'description_list', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'description_list'), 'description_detail' => array('fieldName' => 'description_detail', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'description_detail'), 'search_word' => array('fieldName' => 'search_word', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'search_word'), 'free_area' => array('fieldName' => 'free_area', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'free_area'), 'create_date' => array('fieldName' => 'create_date', 'type' => 'datetimetz', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => false, 'precision' => null, 'columnName' => 'create_date'), 'update_date' => array('fieldName' => 'update_date', 'type' => 'datetimetz', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => false, 'precision' => null, 'columnName' => 'update_date'), 'reserve_date' => array('fieldName' => 'reserve_date', 'type' => 'date', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'reserve_date')), object(Closure), array())
in
app/Plugin/Api42/GraphQL/Types.php
(line 82)
if ($allowed && $type) {$acc[$fieldName] = $type;}return $acc;}, []);$fields = array_reduce($classMetadata->associationMappings, function ($acc, $mapping) use ($classMetadata) {$fieldName = $mapping['fieldName'];$allowed = array_filter($this->allowLists, function (AllowList $al) use ($classMetadata, $fieldName) {
in
vendor/webonyx/graphql-php/src/Type/Definition/FieldDefinition.php
->
Plugin\Api42\GraphQL\{closure}
(line 98)
* @return array<string, self>*/public static function defineFieldMap(Type $type, $fields) : array{if (is_callable($fields)) {$fields = $fields();}if (! is_iterable($fields)) {throw new InvariantViolation(sprintf('%s fields must be an iterable or a callable which returns such an iterable.', $type->name));
in
vendor/webonyx/graphql-php/src/Type/Definition/TypeWithFields.php
::
defineFieldMap
(line 26)
if (isset($this->fields)) {return;}$fields = $this->config['fields'] ?? [];$this->fields = FieldDefinition::defineFieldMap($this, $fields);}public function getField(string $name) : FieldDefinition{Utils::invariant($this->hasField($name), 'Field "%s" is not defined for type "%s"', $name, $this->name);
in
vendor/webonyx/graphql-php/src/Type/Definition/TypeWithFields.php
->
initializeFields
(line 61)
}/** @inheritDoc */public function getFields() : array{$this->initializeFields();foreach ($this->fields as $name => $field) {if (! ($field instanceof UnresolvedFieldDefinition)) {continue;}
in
vendor/webonyx/graphql-php/src/Utils/TypeInfo.php
->
getFields
(line 202)
if ($type instanceof ImplementingType) {$nestedTypes = array_merge($nestedTypes, $type->getInterfaces());}if ($type instanceof HasFieldsType) {foreach ($type->getFields() as $field) {if (count($field->args) > 0) {$fieldArgTypes = array_map(static function (FieldArgument $arg) : Type {return $arg->getType();},
in
vendor/webonyx/graphql-php/src/Utils/TypeInfo.php
::
extractTypes
(line 222)
foreach ($type->getFields() as $field) {$nestedTypes[] = $field->getType();}}foreach ($nestedTypes as $nestedType) {$typeMap = self::extractTypes($nestedType, $typeMap);}return $typeMap;}
in
vendor/webonyx/graphql-php/src/Utils/TypeInfo.php
::
extractTypes
(line 162)
if (! $type) {return $typeMap;}if ($type instanceof WrappingType) {return self::extractTypes($type->getWrappedType(true), $typeMap);}if (! $type instanceof Type) {// Preserve these invalid types in map (at numeric index) to make them// detectable during $schema->validate()
in
vendor/webonyx/graphql-php/src/Utils/TypeInfo.php
::
extractTypes
(line 222)
foreach ($type->getFields() as $field) {$nestedTypes[] = $field->getType();}}foreach ($nestedTypes as $nestedType) {$typeMap = self::extractTypes($nestedType, $typeMap);}return $typeMap;}
in
vendor/webonyx/graphql-php/src/Utils/TypeInfo.php
::
extractTypes
(line 222)
foreach ($type->getFields() as $field) {$nestedTypes[] = $field->getType();}}foreach ($nestedTypes as $nestedType) {$typeMap = self::extractTypes($nestedType, $typeMap);}return $typeMap;}
in
vendor/webonyx/graphql-php/src/Type/Schema.php
::
extractTypes
(line 222)
*/private function collectAllTypes(){$typeMap = [];foreach ($this->resolvedTypes as $type) {$typeMap = TypeInfo::extractTypes($type, $typeMap);}foreach ($this->getDirectives() as $directive) {if (! ($directive instanceof Directive)) {continue;}
in
vendor/webonyx/graphql-php/src/Type/Schema.php
->
collectAllTypes
(line 208)
* @api*/public function getTypeMap() : array{if (! $this->fullyLoaded) {$this->resolvedTypes = $this->collectAllTypes();$this->fullyLoaded = true;}return $this->resolvedTypes;}
in
vendor/webonyx/graphql-php/src/Type/Schema.php
->
getTypeMap
(line 161)
if ($this->config->typeLoader) {return;}// Perform full scan of the schema$this->getTypeMap();}/*** @return Generator*/
$acc[$mutation->getName()] = $mutation->getMutation();return $acc;}, []),'typeLoader' => function ($name) use ($types) {return $types->get($name);},]),]);}}
in
var/cache/dev/ContainerWGZx5HT/getSchemaService.php
->
__construct
(line 81)
$b->append($l);$m = new \ArrayObject();$m->append(new \Plugin\Api42\GraphQL\Mutation\UpdateProductStockMutation($a, ($container->privates['Eccube\\Repository\\ProductClassRepository'] ?? $container->getProductClassRepositoryService()), $d));$m->append(new \Plugin\Api42\GraphQL\Mutation\UpdateShippedMutation($g, $d, ($container->privates['Eccube\\Service\\MailService'] ?? $container->load('getMailServiceService')), ($container->privates['Eccube\\Service\\OrderStateMachine'] ?? $container->load('getOrderStateMachineService')), ($container->privates['Eccube\\Repository\\Master\\OrderStatusRepository'] ?? $container->load('getOrderStatusRepositoryService')), $a, ($container->privates['Eccube\\Repository\\ShippingRepository'] ?? $container->load('getShippingRepositoryService'))));return $container->privates['Plugin\\Api42\\GraphQL\\Schema'] = new \Plugin\Api42\GraphQL\Schema($a, $b, $m);}}
in
var/cache/dev/ContainerWGZx5HT/Eccube_KernelDevDebugContainer.php
::
do
(line 704)
$file .= '.php';}$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;}protected function createProxy($class, \Closure $factory){class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
var/cache/dev/ContainerWGZx5HT/getApiControllerService.php
->
load
(line 24)
{include_once \dirname(__DIR__, 4).'/app/Plugin/Api42/Controller/ApiController.php';include_once \dirname(__DIR__, 4).'/vendor/webonyx/graphql-php/src/Validator/Rules/ValidationRule.php';include_once \dirname(__DIR__, 4).'/app/Plugin/Api42/GraphQL/ScopeValidationRule.php';$container->services['Plugin\\Api42\\Controller\\ApiController'] = $instance = new \Plugin\Api42\Controller\ApiController(($container->privates['Plugin\\Api42\\GraphQL\\Types'] ?? $container->load('getTypesService')), ($container->services['kernel'] ?? $container->get('kernel', 1)), ($container->privates['Plugin\\Api42\\GraphQL\\Schema'] ?? $container->load('getSchemaService')), new \Plugin\Api42\GraphQL\ScopeValidationRule(($container->services['.container.private.security.authorization_checker'] ?? $container->get_Container_Private_Security_AuthorizationCheckerService())));$instance->setEccubeConfig(($container->services['Eccube\\Common\\EccubeConfig'] ?? ($container->services['Eccube\\Common\\EccubeConfig'] = new \Eccube\Common\EccubeConfig($container))));$instance->setEntityManager(($container->services['doctrine.orm.default_entity_manager'] ?? $container->getDoctrine_Orm_DefaultEntityManagerService()));$instance->setTranslator(($container->services['translator'] ?? $container->getTranslatorService()));$instance->setSession(($container->services['.container.private.session'] ?? $container->get_Container_Private_SessionService()));
in
var/cache/dev/ContainerWGZx5HT/Eccube_KernelDevDebugContainer.php
::
do
(line 704)
$file .= '.php';}$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;}protected function createProxy($class, \Closure $factory){class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
vendor/symfony/dependency-injection/Container.php
->
load
(line 237)
$this->loading[$id] = true;try {if (isset($this->fileMap[$id])) {return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);} elseif (isset($this->methodMap[$id])) {return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();}} catch (\Exception $e) {unset($this->services[$id]);
in
vendor/symfony/dependency-injection/Container.php
->
make
(line 219)
*/public function get(string $id, int $invalidBehavior = /* self::EXCEPTION_ON_INVALID_REFERENCE */ 1){return $this->services[$id]?? $this->services[$id = $this->aliases[$id] ?? $id]?? ('service_container' === $id ? $this : ($this->factories[$id] ?? [$this, 'make'])($id, $invalidBehavior));}/*** Creates a service.*
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
get
(line 53)
protected function instantiateController(string $class){$class = ltrim($class, '\\');if ($this->container->has($class)) {return $this->container->get($class);}try {return parent::instantiateController($class);} catch (\Error $e) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/*** {@inheritdoc}*/protected function instantiateController(string $class): object{$controller = parent::instantiateController($class);if ($controller instanceof ContainerAwareInterface) {$controller->setContainer($this->container);}if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 120)
}[$class, $method] = explode('::', $controller, 2);try {$controller = [$this->instantiateController($class), $method];} catch (\Error|\LogicException $e) {try {if ((new \ReflectionMethod($class, $method))->isStatic()) {return $class.'::'.$method;}
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
createController
(line 42)
if (1 === substr_count($controller, ':')) {$controller = str_replace(':', '::', $controller);trigger_deprecation('symfony/http-kernel', '5.1', 'Referencing controllers with a single colon is deprecated. Use "%s" instead.', $controller);}return parent::createController($controller);}/*** {@inheritdoc}*/
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 86)
if (\function_exists($controller)) {return $controller;}try {$callable = $this->createController($controller);} catch (\InvalidArgumentException $e) {throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);}if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/public function getController(Request $request){$e = $this->stopwatch->start('controller.get_callable');$ret = $this->resolver->getController($request);$e->stop();return $ret;}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 146)
if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}// load controllerif (false === $controller = $this->resolver->getController($request)) {throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));}$event = new ControllerEvent($this, $controller, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
}}}$kernel = new Kernel($env, $debug);$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 06:20:20 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"charset": "utf8mb4",
"url": "<redacted>",
"host": "mysql629.db.sakura.ne.jp",
"port": null,
"user": "ocarinahouse",
"password": "<redacted>",
"driverOptions": [],
"serverVersion": "5.7.40-log",
"defaultTableOptions": {
"charset": "utf8mb4",
"collation": "utf8mb4_bin"
},
"dbname": "ocarinahouse_ec4_240620"
}
}
|
| DEBUG 06:20:20 | doctrine |
Executing query: SET SESSION time_zone = '+00:00' {
"sql": "SET SESSION time_zone = '+00:00'"
}
|
| DEBUG 06:20:20 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.company_name AS company_name_2, t0.company_kana AS company_kana_3, t0.postal_code AS postal_code_4, t0.addr01 AS addr01_5, t0.addr02 AS addr02_6, t0.phone_number AS phone_number_7, t0.business_hour AS business_hour_8, t0.email01 AS email01_9, t0.email02 AS email02_10, t0.email03 AS email03_11, t0.email04 AS email04_12, t0.shop_name AS shop_name_13, t0.shop_kana AS shop_kana_14, t0.shop_name_eng AS shop_name_eng_15, t0.update_date AS update_date_16, t0.good_traded AS good_traded_17, t0.message AS message_18, t0.delivery_free_amount AS delivery_free_amount_19, t0.delivery_free_quantity AS delivery_free_quantity_20, t0.option_mypage_order_status_display AS option_mypage_order_status_display_21, t0.option_nostock_hidden AS option_nostock_hidden_22, t0.option_favorite_product AS option_favorite_product_23, t0.option_product_delivery_fee AS option_product_delivery_fee_24, t0.invoice_registration_number AS invoice_registration_number_25, t0.option_product_tax_rule AS option_product_tax_rule_26, t0.option_customer_activate AS option_customer_activate_27, t0.option_remember_me AS option_remember_me_28, t0.option_mail_notifier AS option_mail_notifier_29, t0.authentication_key AS authentication_key_30, t0.php_path AS php_path_31, t0.option_point AS option_point_32, t0.basic_point_rate AS basic_point_rate_33, t0.point_conversion_rate AS point_conversion_rate_34, t0.country_id AS country_id_35, t0.pref_id AS pref_id_36, t0.discriminator_type FROM dtb_base_info t0 WHERE t0.id = ? AND t0.discriminator_type IN ('baseinfo') (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.company_name AS company_name_2, t0.company_kana AS company_kana_3, t0.postal_code AS postal_code_4, t0.addr01 AS addr01_5, t0.addr02 AS addr02_6, t0.phone_number AS phone_number_7, t0.business_hour AS business_hour_8, t0.email01 AS email01_9, t0.email02 AS email02_10, t0.email03 AS email03_11, t0.email04 AS email04_12, t0.shop_name AS shop_name_13, t0.shop_kana AS shop_kana_14, t0.shop_name_eng AS shop_name_eng_15, t0.update_date AS update_date_16, t0.good_traded AS good_traded_17, t0.message AS message_18, t0.delivery_free_amount AS delivery_free_amount_19, t0.delivery_free_quantity AS delivery_free_quantity_20, t0.option_mypage_order_status_display AS option_mypage_order_status_display_21, t0.option_nostock_hidden AS option_nostock_hidden_22, t0.option_favorite_product AS option_favorite_product_23, t0.option_product_delivery_fee AS option_product_delivery_fee_24, t0.invoice_registration_number AS invoice_registration_number_25, t0.option_product_tax_rule AS option_product_tax_rule_26, t0.option_customer_activate AS option_customer_activate_27, t0.option_remember_me AS option_remember_me_28, t0.option_mail_notifier AS option_mail_notifier_29, t0.authentication_key AS authentication_key_30, t0.php_path AS php_path_31, t0.option_point AS option_point_32, t0.basic_point_rate AS basic_point_rate_33, t0.point_conversion_rate AS point_conversion_rate_34, t0.country_id AS country_id_35, t0.pref_id AS pref_id_36, t0.discriminator_type FROM dtb_base_info t0 WHERE t0.id = ? AND t0.discriminator_type IN ('baseinfo')",
"params": {
"1": 1
},
"types": {
"1": 1
}
}
|
| DEBUG 06:20:20 | doctrine |
Executing query: SELECT t0.id AS id_1, t0.point AS point_2, t0.first_order_point AS first_order_point_3, t0.start_time AS start_time_4 FROM plg_entry_point t0 {
"sql": "SELECT t0.id AS id_1, t0.point AS point_2, t0.first_order_point AS first_order_point_3, t0.start_time AS start_time_4 FROM plg_entry_point t0"
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getCacheDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Eccube\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getLogDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Eccube\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::registerBundles()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "Eccube\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "ArrayAccess::offsetExists()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "ArrayAccess::offsetSet()" might add "void" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "ArrayAccess::offsetGet()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "ArrayAccess::offsetUnset()" might add "void" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Eccube\EccubeBundle" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToPHPValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::requiresSQLCommentHint()" might add "bool" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeTzType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToPHPValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeTzType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::requiresSQLCommentHint()" might add "bool" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeTzType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Monolog\Formatter\FormatterInterface::format()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "EasyCorp\EasyLog\EasyLogFormatter" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "base_template_class" option on Twig\Environment is deprecated since Twig 2.7.0. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Eccube\Entity\Cart::setTotal()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Eccube\Entity\Cart::setDeliveryFeeTotal()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Eccube\Entity\Cart::setDiscount()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Eccube\Entity\Cart::setCharge()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Eccube\Entity\Cart::setTax()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Eccube\Entity\Cart::setAddPoint()" method will require a new "$addPoint|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Eccube\Entity\Cart::setUsePoint()" method will require a new "$usePoint|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Class "Eccube\Entity\Member" should implement method "Symfony\Component\Security\Core\User\UserInterface::getUserIdentifier(): string": returns the identifier for this user (e.g. its username or email address). {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\Member" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getUsername()" might add "string" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\Member" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| DEBUG 06:20:20 | front | Client IP: 216.73.216.187 |
| DEBUG 06:20:20 | app | INIT |
| INFO 06:20:20 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://telemanngakki-webshop.com/_profiler/latest?ip=178.239.122.193",
"method": "GET"
}
|
| DEBUG 06:20:20 | app |
PROCESS START [
"_profiler"
]
|
| DEBUG 06:20:20 | doctrine |
Executing statement: SELECT d0_.id AS id_0, d0_.page_name AS page_name_1, d0_.url AS url_2, d0_.file_name AS file_name_3, d0_.edit_type AS edit_type_4, d0_.author AS author_5, d0_.description AS description_6, d0_.keyword AS keyword_7, d0_.create_date AS create_date_8, d0_.update_date AS update_date_9, d0_.meta_robots AS meta_robots_10, d0_.meta_tags AS meta_tags_11, d1_.page_id AS page_id_12, d1_.layout_id AS layout_id_13, d1_.sort_no AS sort_no_14, d2_.id AS id_15, d2_.layout_name AS layout_name_16, d2_.create_date AS create_date_17, d2_.update_date AS update_date_18, d0_.discriminator_type AS discriminator_type_19, d0_.master_page_id AS master_page_id_20, d1_.discriminator_type AS discriminator_type_21, d1_.page_id AS page_id_22, d1_.layout_id AS layout_id_23, d2_.discriminator_type AS discriminator_type_24, d2_.device_type_id AS device_type_id_25 FROM dtb_page d0_ LEFT JOIN dtb_page_layout d1_ ON d0_.id = d1_.page_id AND d1_.discriminator_type IN ('pagelayout') LEFT JOIN dtb_layout d2_ ON d1_.layout_id = d2_.id AND d2_.discriminator_type IN ('layout') WHERE (d0_.url = ?) AND d0_.discriminator_type IN ('page') (parameters: {params}, types: {types}) {
"sql": "SELECT d0_.id AS id_0, d0_.page_name AS page_name_1, d0_.url AS url_2, d0_.file_name AS file_name_3, d0_.edit_type AS edit_type_4, d0_.author AS author_5, d0_.description AS description_6, d0_.keyword AS keyword_7, d0_.create_date AS create_date_8, d0_.update_date AS update_date_9, d0_.meta_robots AS meta_robots_10, d0_.meta_tags AS meta_tags_11, d1_.page_id AS page_id_12, d1_.layout_id AS layout_id_13, d1_.sort_no AS sort_no_14, d2_.id AS id_15, d2_.layout_name AS layout_name_16, d2_.create_date AS create_date_17, d2_.update_date AS update_date_18, d0_.discriminator_type AS discriminator_type_19, d0_.master_page_id AS master_page_id_20, d1_.discriminator_type AS discriminator_type_21, d1_.page_id AS page_id_22, d1_.layout_id AS layout_id_23, d2_.discriminator_type AS discriminator_type_24, d2_.device_type_id AS device_type_id_25 FROM dtb_page d0_ LEFT JOIN dtb_page_layout d1_ ON d0_.id = d1_.page_id AND d1_.discriminator_type IN ('pagelayout') LEFT JOIN dtb_layout d2_ ON d1_.layout_id = d2_.id AND d2_.discriminator_type IN ('layout') WHERE (d0_.url = ?) AND d0_.discriminator_type IN ('page')",
"params": {
"1": "_profiler"
},
"types": {
"1": 2
}
}
|
| INFO 06:20:20 | front | fallback to PC layout |
| DEBUG 06:20:20 | doctrine |
Executing statement: SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED {
"sql": "SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED"
}
|
| DEBUG 06:20:20 | doctrine | Beginning transaction |
| DEBUG 06:20:20 | front | Begin Transaction. |
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | app |
LOGIC START [
"_profiler"
]
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Plugin\OrderStatusEx\EventSubscriber\OrderStatusEventSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Plugin\\OrderStatusEx\\EventSubscriber\\OrderStatusEventSubscriber::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| INFO 06:20:20 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.encoder_factory.generic" service is deprecated, use "security.password_hasher_factory" instead. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" class is deprecated, use "Symfony\Component\PasswordHasher\PasswordHasherInterface" instead. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead. {
"exception": {}
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 06:20:20 | php |
User Deprecated: The "Twig\Template" class is considered internal. It may change without further notice. You should not use it from "Eccube\Twig\Template". {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Twig\Template::getTemplateName()" might add "string" as a native return type declaration in the future. Do the same in child class "Eccube\Twig\Template" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Twig\Template::getDebugInfo()" might add "array" as a native return type declaration in the future. Do the same in child class "Eccube\Twig\Template" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 06:20:20 | php |
User Deprecated: Method "Twig\Template::getSourceContext()" might add "Source" as a native return type declaration in the future. Do the same in child class "Eccube\Twig\Template" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Plugin\OrderStatusEx\EventSubscriber\OrderStatusEventSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Plugin\\OrderStatusEx\\EventSubscriber\\OrderStatusEventSubscriber::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\LogListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\LogListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\MaintenanceListener::onResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\MaintenanceListener::onResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Plugin\Api42\Service\WebHookService::fire". {
"event": "kernel.response",
"listener": "Plugin\\Api42\\Service\\WebHookService::fire"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Plugin\OrderStatusEx\EventSubscriber\OrderStatusEventSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Plugin\\OrderStatusEx\\EventSubscriber\\OrderStatusEventSubscriber::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\LogListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\LogListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\MaintenanceListener::onResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\MaintenanceListener::onResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Plugin\Api42\Service\WebHookService::fire". {
"event": "kernel.response",
"listener": "Plugin\\Api42\\Service\\WebHookService::fire"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Plugin\OrderStatusEx\EventSubscriber\OrderStatusEventSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Plugin\\OrderStatusEx\\EventSubscriber\\OrderStatusEventSubscriber::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 06:20:20 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
Stack Trace
|
ErrorException
|
|---|
ErrorException:
Warning: Undefined array key "date"
at app/Plugin/Api42/GraphQL/Types.php:115
at Plugin\Api42\GraphQL\Types->convertFieldMappingToType(array('fieldName' => 'reserve_date', 'type' => 'date', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'reserve_date'))
(app/Plugin/Api42/GraphQL/Types.php:70)
at Plugin\Api42\GraphQL\Types->Plugin\Api42\GraphQL\{closure}(array('id' => object(NonNull), 'name' => object(NonNull), 'note' => object(StringType), 'description_list' => object(StringType), 'description_detail' => object(StringType), 'search_word' => object(StringType), 'free_area' => object(StringType), 'create_date' => object(NonNull), 'update_date' => object(NonNull)), array('fieldName' => 'reserve_date', 'type' => 'date', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'reserve_date'))
at array_reduce(array('id' => array('fieldName' => 'id', 'type' => 'integer', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => false, 'precision' => null, 'options' => array('unsigned' => true), 'columnName' => 'id', 'id' => true), 'name' => array('fieldName' => 'name', 'type' => 'string', 'scale' => null, 'length' => 255, 'unique' => false, 'nullable' => false, 'precision' => null, 'columnName' => 'name'), 'note' => array('fieldName' => 'note', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'note'), 'description_list' => array('fieldName' => 'description_list', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'description_list'), 'description_detail' => array('fieldName' => 'description_detail', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'description_detail'), 'search_word' => array('fieldName' => 'search_word', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'search_word'), 'free_area' => array('fieldName' => 'free_area', 'type' => 'text', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'free_area'), 'create_date' => array('fieldName' => 'create_date', 'type' => 'datetimetz', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => false, 'precision' => null, 'columnName' => 'create_date'), 'update_date' => array('fieldName' => 'update_date', 'type' => 'datetimetz', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => false, 'precision' => null, 'columnName' => 'update_date'), 'reserve_date' => array('fieldName' => 'reserve_date', 'type' => 'date', 'scale' => null, 'length' => null, 'unique' => false, 'nullable' => true, 'precision' => null, 'columnName' => 'reserve_date')), object(Closure), array())
(app/Plugin/Api42/GraphQL/Types.php:82)
at Plugin\Api42\GraphQL\Types->Plugin\Api42\GraphQL\{closure}()
(vendor/webonyx/graphql-php/src/Type/Definition/FieldDefinition.php:98)
at GraphQL\Type\Definition\FieldDefinition::defineFieldMap(object(ObjectType), object(Closure))
(vendor/webonyx/graphql-php/src/Type/Definition/TypeWithFields.php:26)
at GraphQL\Type\Definition\TypeWithFields->initializeFields()
(vendor/webonyx/graphql-php/src/Type/Definition/TypeWithFields.php:61)
at GraphQL\Type\Definition\TypeWithFields->getFields()
(vendor/webonyx/graphql-php/src/Utils/TypeInfo.php:202)
at GraphQL\Utils\TypeInfo::extractTypes(object(ObjectType), array('Query' => object(ObjectType), 'ID' => object(IDType), 'Customer' => object(ObjectType), 'String' => object(StringType), 'DateTime' => object(DateTimeType), 'Float' => object(FloatType), 'CustomerFavoriteProduct' => object(ObjectType), 'Product' => object(ObjectType)))
(vendor/webonyx/graphql-php/src/Utils/TypeInfo.php:222)
at GraphQL\Utils\TypeInfo::extractTypes(object(ObjectType), array('Query' => object(ObjectType), 'ID' => object(IDType), 'Customer' => object(ObjectType), 'String' => object(StringType), 'DateTime' => object(DateTimeType), 'Float' => object(FloatType), 'CustomerFavoriteProduct' => object(ObjectType)))
(vendor/webonyx/graphql-php/src/Utils/TypeInfo.php:162)
at GraphQL\Utils\TypeInfo::extractTypes(object(ListOfType), array('Query' => object(ObjectType), 'ID' => object(IDType), 'Customer' => object(ObjectType), 'String' => object(StringType), 'DateTime' => object(DateTimeType), 'Float' => object(FloatType)))
(vendor/webonyx/graphql-php/src/Utils/TypeInfo.php:222)
at GraphQL\Utils\TypeInfo::extractTypes(object(ObjectType), array('Query' => object(ObjectType), 'ID' => object(IDType), 'Customer' => object(ObjectType), 'String' => object(StringType), 'DateTime' => object(DateTimeType), 'Float' => object(FloatType)))
(vendor/webonyx/graphql-php/src/Utils/TypeInfo.php:222)
at GraphQL\Utils\TypeInfo::extractTypes(object(ObjectType), array('Query' => object(ObjectType), 'ID' => object(IDType)))
(vendor/webonyx/graphql-php/src/Type/Schema.php:222)
at GraphQL\Type\Schema->collectAllTypes()
(vendor/webonyx/graphql-php/src/Type/Schema.php:208)
at GraphQL\Type\Schema->getTypeMap()
(vendor/webonyx/graphql-php/src/Type/Schema.php:161)
at GraphQL\Type\Schema->__construct(object(SchemaConfig))
(app/Plugin/Api42/GraphQL/Schema.php:45)
at Plugin\Api42\GraphQL\Schema->__construct(object(Types_0fe571c), object(ArrayObject), object(ArrayObject))
(var/cache/dev/ContainerWGZx5HT/getSchemaService.php:81)
at ContainerWGZx5HT\getSchemaService::do(object(Eccube_KernelDevDebugContainer), true)
(var/cache/dev/ContainerWGZx5HT/Eccube_KernelDevDebugContainer.php:704)
at ContainerWGZx5HT\Eccube_KernelDevDebugContainer->load('getSchemaService.php')
(var/cache/dev/ContainerWGZx5HT/getApiControllerService.php:24)
at ContainerWGZx5HT\getApiControllerService::do(object(Eccube_KernelDevDebugContainer), true)
(var/cache/dev/ContainerWGZx5HT/Eccube_KernelDevDebugContainer.php:704)
at ContainerWGZx5HT\Eccube_KernelDevDebugContainer->load('getApiControllerService.php')
(vendor/symfony/dependency-injection/Container.php:237)
at Symfony\Component\DependencyInjection\Container->make('Plugin\\Api42\\Controller\\ApiController', 1)
(vendor/symfony/dependency-injection/Container.php:219)
at Symfony\Component\DependencyInjection\Container->get('Plugin\\Api42\\Controller\\ApiController')
(vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:53)
at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('Plugin\\Api42\\Controller\\ApiController')
(vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29)
at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('Plugin\\Api42\\Controller\\ApiController')
(vendor/symfony/http-kernel/Controller/ControllerResolver.php:120)
at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('Plugin\\Api42\\Controller\\ApiController::index')
(vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:42)
at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->createController('Plugin\\Api42\\Controller\\ApiController::index')
(vendor/symfony/http-kernel/Controller/ControllerResolver.php:86)
at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38)
at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/HttpKernel.php:146)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(index.php/:83)
|