Exceptions
Exceptions 2
Doctrine\DBAL\Types\ ConversionException
*/
public static function conversionFailed($value, $toType, ?Throwable $previous = null)
{
$value = strlen($value) > 32 ? substr($value, 0, 20) . '...' : $value;
return new self('Could not convert database value "' . $value . '" to Doctrine Type ' . $toType, 0, $previous);
}
/**
* Thrown when a Database to Doctrine Type Conversion fails and we can make a statement
* about the expected format.
in
vendor/symfony/doctrine-bridge/Types/AbstractUidType.php
::
conversionFailed
(line 108)
}
private function throwValueNotConvertible(mixed $value, \Throwable $previous): never
{
if (!class_exists(ValueNotConvertible::class)) {
throw ConversionException::conversionFailed($value, $this->getName(), $previous);
}
throw ValueNotConvertible::new($value, $this->getName(), null, $previous);
}
}
in
vendor/symfony/doctrine-bridge/Types/AbstractUidType.php
->
throwValueNotConvertible
(line 82)
}
try {
return $this->getUidClass()::fromString($value)->$toString();
} catch (\InvalidArgumentException $e) {
$this->throwValueNotConvertible($value, $e);
}
}
public function requiresSQLCommentHint(AbstractPlatform $platform): bool
{
in
vendor/doctrine/dbal/src/Connection.php
->
convertToDatabaseValue
(line 1887)
if (is_string($type)) {
$type = Type::getType($type);
}
if ($type instanceof Type) {
$value = $type->convertToDatabaseValue($value, $this->getDatabasePlatform());
$bindingType = $type->getBindingType();
} else {
$bindingType = $type ?? ParameterType::STRING;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getBindingInfo
(line 1828)
$bindIndex = 1;
foreach ($params as $key => $value) {
if (isset($types[$key])) {
$type = $types[$key];
[$value, $bindingType] = $this->getBindingInfo($value, $type);
} else {
if (array_key_exists($key, $types)) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/5550',
in
vendor/doctrine/dbal/src/Connection.php
->
bindParameters
(line 1102)
[$sql, $params, $types] = $this->expandArrayParameters($sql, $params, $types);
}
$stmt = $connection->prepare($sql);
$this->bindParameters($stmt, $params, $types);
$result = $stmt->execute();
} else {
$result = $connection->query($sql);
}
in
vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php
->
executeQuery
(line 27)
/**
* {@inheritDoc}
*/
public function execute(Connection $conn, array $params, array $types): Result
{
return $conn->executeQuery($this->getSqlStatements(), $params, $types, $this->queryCacheProfile);
}
}
in
vendor/doctrine/orm/src/Query.php
->
execute
(line 296)
$sqlParams,
$types,
$this->em->getConnection()->getParams(),
);
return $executor->execute($this->em->getConnection(), $sqlParams, $types);
}
/**
* @param array<string,mixed> $sqlParams
* @param array<string,Type> $types
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 935)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
$cache->save($cacheItem->set($result + [$realCacheKey => $data]));
};
}
$stmt = $this->_doExecute();
if (is_numeric($stmt)) {
$setCacheEntry($stmt);
return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 891)
): mixed {
if ($this->cacheable && $this->isCacheEnabled()) {
return $this->executeUsingQueryCache($parameters, $hydrationMode);
}
return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
}
/**
* Execute query ignoring second level cache.
*
in
vendor/doctrine/orm/src/AbstractQuery.php
->
execute
(line 738)
* @throws NonUniqueResultException
*/
public function getOneOrNullResult(string|int|null $hydrationMode = null): mixed
{
try {
$result = $this->execute(null, $hydrationMode);
} catch (NoResultException) {
return null;
}
if ($this->hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
in
vendor/api-platform/doctrine-orm/State/ItemProvider.php
->
getOneOrNullResult
(line 89)
if ($extension instanceof QueryResultItemExtensionInterface && $extension->supportsResult($entityClass, $operation, $context)) {
return $extension->getResult($queryBuilder, $entityClass, $operation, $context);
}
}
return $queryBuilder->getQuery()->getOneOrNullResult();
}
}
in
vendor/api-platform/state/CallableProvider.php
->
provide
(line 43)
}
/** @var ProviderInterface $providerInstance */
$providerInstance = $this->locator->get($provider);
return $providerInstance->provide($operation, $uriVariables, $context);
}
throw new ProviderNotFoundException(\sprintf('Provider not found on operation "%s"', $operation->getName()));
}
}
in
vendor/api-platform/state/Provider/ReadProvider.php
->
provide
(line 84)
]);
$request->attributes->set('_api_normalization_context', $normalizationContext);
}
try {
$data = $this->provider->provide($operation, $uriVariables, $context);
} catch (ProviderNotFoundException $e) {
// In case the dev just forgot to implement it
$this->logger?->debug('No provider registered for {resource_class}', ['resource_class' => $resourceClass]);
$data = null;
}
in
vendor/api-platform/symfony/Bundle/SwaggerUi/SwaggerUiProvider.php
->
provide
(line 50)
!($operation instanceof HttpOperation)
|| !($request = $context['request'] ?? null)
|| 'html' !== $request->getRequestFormat()
|| true === ($operation->getExtraProperties()['_api_disable_swagger_provider'] ?? false)
) {
return $this->decorated->provide($operation, $uriVariables, $context);
}
if (!$request->attributes->has('_api_requested_operation')) {
$request->attributes->set('_api_requested_operation', $operation);
}
in
vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php
->
provide
(line 62)
default:
$isGranted = $operation->getSecurity();
$message = $operation->getSecurityMessage();
}
$body = $this->decorated->provide($operation, $uriVariables, $context);
if (null === $isGranted) {
return $body;
}
// On a GraphQl QueryCollection we want to perform security stage only on the top-level query
in
vendor/api-platform/state/Provider/SecurityParameterProvider.php
->
provide
(line 50)
{
}
public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
{
$body = $this->decorated->provide($operation, $uriVariables, $context);
$request = $context['request'] ?? null;
$operation = $request?->attributes->get('_api_operation') ?? $operation;
$parameters = $operation->getParameters() ?? new Parameters();
in
vendor/api-platform/state/Provider/DeserializeProvider.php
->
provide
(line 60)
// We need request content
if (!$operation instanceof HttpOperation || !($request = $context['request'] ?? null)) {
return $this->decorated?->provide($operation, $uriVariables, $context);
}
$data = $this->decorated ? $this->decorated->provide($operation, $uriVariables, $context) : $request->attributes->get('data');
if (!$operation->canDeserialize() || $context['request']->attributes->has('deserialized')) {
return $data;
}
in
vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php
->
provide
(line 62)
default:
$isGranted = $operation->getSecurity();
$message = $operation->getSecurityMessage();
}
$body = $this->decorated->provide($operation, $uriVariables, $context);
if (null === $isGranted) {
return $body;
}
// On a GraphQl QueryCollection we want to perform security stage only on the top-level query
in
vendor/api-platform/symfony/Validator/State/ValidateProvider.php
->
provide
(line 32)
{
}
public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
{
$body = $this->decorated?->provide($operation, $uriVariables, $context) ?? ($context['request'] ?? null)?->attributes->get('data');
if ($body instanceof Response || !$body) {
return $body;
}
in
vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php
->
provide
(line 62)
default:
$isGranted = $operation->getSecurity();
$message = $operation->getSecurityMessage();
}
$body = $this->decorated->provide($operation, $uriVariables, $context);
if (null === $isGranted) {
return $body;
}
// On a GraphQl QueryCollection we want to perform security stage only on the top-level query
in
vendor/api-platform/symfony/Validator/State/ParameterValidatorProvider.php
->
provide
(line 101)
if (0 !== \count($constraintViolationList)) {
throw new ValidationException($constraintViolationList);
}
return $this->decorated->provide($operation, $uriVariables, $context);
}
// There's a `property` inside Parameter but it's used for hydra:search only as here we want the parameter name instead
private function getProperty(Parameter $parameter, ConstraintViolationInterface $violation): string
{
in
vendor/api-platform/state/Provider/ParameterProvider.php
->
provide
(line 102)
$request?->attributes->set('_api_operation', $operation);
$context['operation'] = $operation;
$this->stopwatch?->stop('api_platform.provider.parameter');
return $this->decorated?->provide($operation, $uriVariables, $context);
}
/**
* TODO: uriVariables could be a Parameters instance, it'd make things easier.
*
in
vendor/api-platform/state/Provider/ContentNegotiationProvider.php
->
provide
(line 56)
$this->addRequestFormats($request, $formats);
$request->attributes->set('input_format', $this->getInputFormat($operation, $request));
$request->setRequestFormat($this->getRequestFormat($request, $formats, !$isErrorOperation));
$this->stopwatch?->stop('api_platform.provider.content_negotiation');
return $this->decorated?->provide($operation, $uriVariables, $context);
}
/**
* Adds the supported formats to the request.
*
in
vendor/api-platform/symfony/Controller/MainController.php
->
provide
(line 94)
|| ('PUT' === $method && !($operation->getExtraProperties()['standard_put'] ?? true));
$operation = $operation->withDenormalizationContext($denormalizationContext + [SerializerContextBuilderInterface::ASSIGN_OBJECT_TO_POPULATE => $assignObjectToPopulate]);
}
$body = $this->provider->provide($operation, $uriVariables, $context);
// The provider can change the Operation, extract it again from the Request attributes
if ($request->attributes->get('_api_operation') !== $operation) {
$operation = $this->initializeOperation($request);
in
vendor/symfony/http-kernel/HttpKernel.php
->
__invoke
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response, $event);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
<?php
use KiloSierraCharlie\CalendarManager\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Symfony\Component\Uid\Exception\ InvalidArgumentException
in
vendor/symfony/uid/Uuid.php
(line 44)
public function __construct(string $uuid, bool $checkVariant = false)
{
$type = preg_match('{^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$}Di', $uuid) ? (int) $uuid[14] : false;
if (false === $type || (static::TYPE ?: $type) !== $type) {
throw new InvalidArgumentException(\sprintf('Invalid UUID%s: "%s".', static::TYPE ? 'v'.static::TYPE : '', $uuid));
}
$this->uid = strtolower($uuid);
if ($checkVariant && !\in_array($this->uid[19], ['8', '9', 'a', 'b'], true)) {
in
vendor/symfony/uid/Uuid.php
->
__construct
(line 59)
public static function fromString(string $uuid): static
{
$uuid = self::transformToRfc9562($uuid, self::FORMAT_ALL);
if (__CLASS__ !== static::class || 36 !== \strlen($uuid)) {
return new static($uuid);
}
if (self::NIL === $uuid) {
return new NilUuid();
}
in
vendor/symfony/doctrine-bridge/Types/AbstractUidType.php
::
fromString
(line 80)
if (!\is_string($value)) {
$this->throwInvalidType($value);
}
try {
return $this->getUidClass()::fromString($value)->$toString();
} catch (\InvalidArgumentException $e) {
$this->throwValueNotConvertible($value, $e);
}
}
in
vendor/doctrine/dbal/src/Connection.php
->
convertToDatabaseValue
(line 1887)
if (is_string($type)) {
$type = Type::getType($type);
}
if ($type instanceof Type) {
$value = $type->convertToDatabaseValue($value, $this->getDatabasePlatform());
$bindingType = $type->getBindingType();
} else {
$bindingType = $type ?? ParameterType::STRING;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getBindingInfo
(line 1828)
$bindIndex = 1;
foreach ($params as $key => $value) {
if (isset($types[$key])) {
$type = $types[$key];
[$value, $bindingType] = $this->getBindingInfo($value, $type);
} else {
if (array_key_exists($key, $types)) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/5550',
in
vendor/doctrine/dbal/src/Connection.php
->
bindParameters
(line 1102)
[$sql, $params, $types] = $this->expandArrayParameters($sql, $params, $types);
}
$stmt = $connection->prepare($sql);
$this->bindParameters($stmt, $params, $types);
$result = $stmt->execute();
} else {
$result = $connection->query($sql);
}
in
vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php
->
executeQuery
(line 27)
/**
* {@inheritDoc}
*/
public function execute(Connection $conn, array $params, array $types): Result
{
return $conn->executeQuery($this->getSqlStatements(), $params, $types, $this->queryCacheProfile);
}
}
in
vendor/doctrine/orm/src/Query.php
->
execute
(line 296)
$sqlParams,
$types,
$this->em->getConnection()->getParams(),
);
return $executor->execute($this->em->getConnection(), $sqlParams, $types);
}
/**
* @param array<string,mixed> $sqlParams
* @param array<string,Type> $types
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 935)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
$cache->save($cacheItem->set($result + [$realCacheKey => $data]));
};
}
$stmt = $this->_doExecute();
if (is_numeric($stmt)) {
$setCacheEntry($stmt);
return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 891)
): mixed {
if ($this->cacheable && $this->isCacheEnabled()) {
return $this->executeUsingQueryCache($parameters, $hydrationMode);
}
return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
}
/**
* Execute query ignoring second level cache.
*
in
vendor/doctrine/orm/src/AbstractQuery.php
->
execute
(line 738)
* @throws NonUniqueResultException
*/
public function getOneOrNullResult(string|int|null $hydrationMode = null): mixed
{
try {
$result = $this->execute(null, $hydrationMode);
} catch (NoResultException) {
return null;
}
if ($this->hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
in
vendor/api-platform/doctrine-orm/State/ItemProvider.php
->
getOneOrNullResult
(line 89)
if ($extension instanceof QueryResultItemExtensionInterface && $extension->supportsResult($entityClass, $operation, $context)) {
return $extension->getResult($queryBuilder, $entityClass, $operation, $context);
}
}
return $queryBuilder->getQuery()->getOneOrNullResult();
}
}
in
vendor/api-platform/state/CallableProvider.php
->
provide
(line 43)
}
/** @var ProviderInterface $providerInstance */
$providerInstance = $this->locator->get($provider);
return $providerInstance->provide($operation, $uriVariables, $context);
}
throw new ProviderNotFoundException(\sprintf('Provider not found on operation "%s"', $operation->getName()));
}
}
in
vendor/api-platform/state/Provider/ReadProvider.php
->
provide
(line 84)
]);
$request->attributes->set('_api_normalization_context', $normalizationContext);
}
try {
$data = $this->provider->provide($operation, $uriVariables, $context);
} catch (ProviderNotFoundException $e) {
// In case the dev just forgot to implement it
$this->logger?->debug('No provider registered for {resource_class}', ['resource_class' => $resourceClass]);
$data = null;
}
in
vendor/api-platform/symfony/Bundle/SwaggerUi/SwaggerUiProvider.php
->
provide
(line 50)
!($operation instanceof HttpOperation)
|| !($request = $context['request'] ?? null)
|| 'html' !== $request->getRequestFormat()
|| true === ($operation->getExtraProperties()['_api_disable_swagger_provider'] ?? false)
) {
return $this->decorated->provide($operation, $uriVariables, $context);
}
if (!$request->attributes->has('_api_requested_operation')) {
$request->attributes->set('_api_requested_operation', $operation);
}
in
vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php
->
provide
(line 62)
default:
$isGranted = $operation->getSecurity();
$message = $operation->getSecurityMessage();
}
$body = $this->decorated->provide($operation, $uriVariables, $context);
if (null === $isGranted) {
return $body;
}
// On a GraphQl QueryCollection we want to perform security stage only on the top-level query
in
vendor/api-platform/state/Provider/SecurityParameterProvider.php
->
provide
(line 50)
{
}
public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
{
$body = $this->decorated->provide($operation, $uriVariables, $context);
$request = $context['request'] ?? null;
$operation = $request?->attributes->get('_api_operation') ?? $operation;
$parameters = $operation->getParameters() ?? new Parameters();
in
vendor/api-platform/state/Provider/DeserializeProvider.php
->
provide
(line 60)
// We need request content
if (!$operation instanceof HttpOperation || !($request = $context['request'] ?? null)) {
return $this->decorated?->provide($operation, $uriVariables, $context);
}
$data = $this->decorated ? $this->decorated->provide($operation, $uriVariables, $context) : $request->attributes->get('data');
if (!$operation->canDeserialize() || $context['request']->attributes->has('deserialized')) {
return $data;
}
in
vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php
->
provide
(line 62)
default:
$isGranted = $operation->getSecurity();
$message = $operation->getSecurityMessage();
}
$body = $this->decorated->provide($operation, $uriVariables, $context);
if (null === $isGranted) {
return $body;
}
// On a GraphQl QueryCollection we want to perform security stage only on the top-level query
in
vendor/api-platform/symfony/Validator/State/ValidateProvider.php
->
provide
(line 32)
{
}
public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
{
$body = $this->decorated?->provide($operation, $uriVariables, $context) ?? ($context['request'] ?? null)?->attributes->get('data');
if ($body instanceof Response || !$body) {
return $body;
}
in
vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php
->
provide
(line 62)
default:
$isGranted = $operation->getSecurity();
$message = $operation->getSecurityMessage();
}
$body = $this->decorated->provide($operation, $uriVariables, $context);
if (null === $isGranted) {
return $body;
}
// On a GraphQl QueryCollection we want to perform security stage only on the top-level query
in
vendor/api-platform/symfony/Validator/State/ParameterValidatorProvider.php
->
provide
(line 101)
if (0 !== \count($constraintViolationList)) {
throw new ValidationException($constraintViolationList);
}
return $this->decorated->provide($operation, $uriVariables, $context);
}
// There's a `property` inside Parameter but it's used for hydra:search only as here we want the parameter name instead
private function getProperty(Parameter $parameter, ConstraintViolationInterface $violation): string
{
in
vendor/api-platform/state/Provider/ParameterProvider.php
->
provide
(line 102)
$request?->attributes->set('_api_operation', $operation);
$context['operation'] = $operation;
$this->stopwatch?->stop('api_platform.provider.parameter');
return $this->decorated?->provide($operation, $uriVariables, $context);
}
/**
* TODO: uriVariables could be a Parameters instance, it'd make things easier.
*
in
vendor/api-platform/state/Provider/ContentNegotiationProvider.php
->
provide
(line 56)
$this->addRequestFormats($request, $formats);
$request->attributes->set('input_format', $this->getInputFormat($operation, $request));
$request->setRequestFormat($this->getRequestFormat($request, $formats, !$isErrorOperation));
$this->stopwatch?->stop('api_platform.provider.content_negotiation');
return $this->decorated?->provide($operation, $uriVariables, $context);
}
/**
* Adds the supported formats to the request.
*
in
vendor/api-platform/symfony/Controller/MainController.php
->
provide
(line 94)
|| ('PUT' === $method && !($operation->getExtraProperties()['standard_put'] ?? true));
$operation = $operation->withDenormalizationContext($denormalizationContext + [SerializerContextBuilderInterface::ASSIGN_OBJECT_TO_POPULATE => $assignObjectToPopulate]);
}
$body = $this->provider->provide($operation, $uriVariables, $context);
// The provider can change the Operation, extract it again from the Request attributes
if ($request->attributes->get('_api_operation') !== $operation) {
$operation = $this->initializeOperation($request);
in
vendor/symfony/http-kernel/HttpKernel.php
->
__invoke
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response, $event);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
<?php
use KiloSierraCharlie\CalendarManager\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Message |
---|---|
info 22:07:56 |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "http://calendarmanager.net/_profiler/latest?type=request&url=http%3A%2F%2Fcalendarmanager.net%2Fhttps%253A%2Fcalendarmanager.net%2F_wdt%2Fstyles", "method": "GET" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
debug 22:07:56 |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
debug 22:07:56 |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
debug 22:07:56 |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
debug 22:07:56 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments" } |
debug 22:07:56 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
debug 22:07:56 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
debug 22:07:56 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments" } |
debug 22:07:56 |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
Stack Traces 2
[2/2]
ConversionException
|
---|
Doctrine\DBAL\Types\ConversionException: Could not convert database value "me" to Doctrine Type uuid at vendor/doctrine/dbal/src/Types/ConversionException.php:37 at Doctrine\DBAL\Types\ConversionException::conversionFailed('me', 'uuid', object(InvalidArgumentException)) (vendor/symfony/doctrine-bridge/Types/AbstractUidType.php:108) at Symfony\Bridge\Doctrine\Types\AbstractUidType->throwValueNotConvertible('me', object(InvalidArgumentException)) (vendor/symfony/doctrine-bridge/Types/AbstractUidType.php:82) at Symfony\Bridge\Doctrine\Types\AbstractUidType->convertToDatabaseValue('me', object(PostgreSQL120Platform)) (vendor/doctrine/dbal/src/Connection.php:1887) at Doctrine\DBAL\Connection->getBindingInfo('me', object(UuidType)) (vendor/doctrine/dbal/src/Connection.php:1828) at Doctrine\DBAL\Connection->bindParameters(object(Statement), array('me'), array('uuid')) (vendor/doctrine/dbal/src/Connection.php:1102) at Doctrine\DBAL\Connection->executeQuery('SELECT u0_.id AS id_0, u0_.roles AS roles_1, u0_.password AS password_2, u0_.email_address AS email_address_3, u0_.first_name AS first_name_4, u0_.middle_name AS middle_name_5, u0_.last_name AS last_name_6, u0_.date_created AS date_created_7, u0_.date_last_seen AS date_last_seen_8, u0_.deleted_at AS deleted_at_9 FROM "user" u0_ WHERE u0_.id = ? AND u0_.deleted_at IS NULL', array('me'), array('uuid'), null) (vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php:27) at Doctrine\ORM\Query\Exec\FinalizedSelectExecutor->execute(object(Connection), array('me'), array('uuid')) (vendor/doctrine/orm/src/Query.php:296) at Doctrine\ORM\Query->_doExecute() (vendor/doctrine/orm/src/AbstractQuery.php:935) at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null) (vendor/doctrine/orm/src/AbstractQuery.php:891) at Doctrine\ORM\AbstractQuery->execute(null, null) (vendor/doctrine/orm/src/AbstractQuery.php:738) at Doctrine\ORM\AbstractQuery->getOneOrNullResult() (vendor/api-platform/doctrine-orm/State/ItemProvider.php:89) at ApiPlatform\Doctrine\Orm\State\ItemProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => '')) (vendor/api-platform/state/CallableProvider.php:43) at ApiPlatform\State\CallableProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => '')) (vendor/api-platform/state/Provider/ReadProvider.php:84) at ApiPlatform\State\Provider\ReadProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => '')) (vendor/api-platform/symfony/Bundle/SwaggerUi/SwaggerUiProvider.php:50) at ApiPlatform\Symfony\Bundle\SwaggerUi\SwaggerUiProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62) at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/SecurityParameterProvider.php:50) at ApiPlatform\State\Provider\SecurityParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/DeserializeProvider.php:60) at ApiPlatform\State\Provider\DeserializeProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62) at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Validator/State/ValidateProvider.php:32) at ApiPlatform\Symfony\Validator\State\ValidateProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62) at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Validator/State/ParameterValidatorProvider.php:101) at ApiPlatform\Symfony\Validator\State\ParameterValidatorProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/ParameterProvider.php:102) at ApiPlatform\State\Provider\ParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/ContentNegotiationProvider.php:56) at ApiPlatform\State\Provider\ContentNegotiationProvider->provide(object(Patch), array('id' => 'me'), array('request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Controller/MainController.php:94) at ApiPlatform\Symfony\Controller\MainController->__invoke(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:183) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:182) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/html/vendor/autoload_runtime.php') (public/index.php:5) |
[1/2]
InvalidArgumentException
|
---|
Symfony\Component\Uid\Exception\InvalidArgumentException: Invalid UUID: "me". at vendor/symfony/uid/Uuid.php:44 at Symfony\Component\Uid\Uuid->__construct('me') (vendor/symfony/uid/Uuid.php:59) at Symfony\Component\Uid\Uuid::fromString('me') (vendor/symfony/doctrine-bridge/Types/AbstractUidType.php:80) at Symfony\Bridge\Doctrine\Types\AbstractUidType->convertToDatabaseValue('me', object(PostgreSQL120Platform)) (vendor/doctrine/dbal/src/Connection.php:1887) at Doctrine\DBAL\Connection->getBindingInfo('me', object(UuidType)) (vendor/doctrine/dbal/src/Connection.php:1828) at Doctrine\DBAL\Connection->bindParameters(object(Statement), array('me'), array('uuid')) (vendor/doctrine/dbal/src/Connection.php:1102) at Doctrine\DBAL\Connection->executeQuery('SELECT u0_.id AS id_0, u0_.roles AS roles_1, u0_.password AS password_2, u0_.email_address AS email_address_3, u0_.first_name AS first_name_4, u0_.middle_name AS middle_name_5, u0_.last_name AS last_name_6, u0_.date_created AS date_created_7, u0_.date_last_seen AS date_last_seen_8, u0_.deleted_at AS deleted_at_9 FROM "user" u0_ WHERE u0_.id = ? AND u0_.deleted_at IS NULL', array('me'), array('uuid'), null) (vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php:27) at Doctrine\ORM\Query\Exec\FinalizedSelectExecutor->execute(object(Connection), array('me'), array('uuid')) (vendor/doctrine/orm/src/Query.php:296) at Doctrine\ORM\Query->_doExecute() (vendor/doctrine/orm/src/AbstractQuery.php:935) at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null) (vendor/doctrine/orm/src/AbstractQuery.php:891) at Doctrine\ORM\AbstractQuery->execute(null, null) (vendor/doctrine/orm/src/AbstractQuery.php:738) at Doctrine\ORM\AbstractQuery->getOneOrNullResult() (vendor/api-platform/doctrine-orm/State/ItemProvider.php:89) at ApiPlatform\Doctrine\Orm\State\ItemProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => '')) (vendor/api-platform/state/CallableProvider.php:43) at ApiPlatform\State\CallableProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => '')) (vendor/api-platform/state/Provider/ReadProvider.php:84) at ApiPlatform\State\Provider\ReadProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => '')) (vendor/api-platform/symfony/Bundle/SwaggerUi/SwaggerUiProvider.php:50) at ApiPlatform\Symfony\Bundle\SwaggerUi\SwaggerUiProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62) at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/SecurityParameterProvider.php:50) at ApiPlatform\State\Provider\SecurityParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/DeserializeProvider.php:60) at ApiPlatform\State\Provider\DeserializeProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62) at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Validator/State/ValidateProvider.php:32) at ApiPlatform\Symfony\Validator\State\ValidateProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62) at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Validator/State/ParameterValidatorProvider.php:101) at ApiPlatform\Symfony\Validator\State\ParameterValidatorProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/ParameterProvider.php:102) at ApiPlatform\State\Provider\ParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/state/Provider/ContentNegotiationProvider.php:56) at ApiPlatform\State\Provider\ContentNegotiationProvider->provide(object(Patch), array('id' => 'me'), array('request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User')) (vendor/api-platform/symfony/Controller/MainController.php:94) at ApiPlatform\Symfony\Controller\MainController->__invoke(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:183) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:182) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/html/vendor/autoload_runtime.php') (public/index.php:5) |