Skip to content

Commit

Permalink
fixed phpcs issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bidi47 committed Feb 29, 2024
1 parent ea6aa6a commit f5c8a37
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions config/autoload/doctrine.global.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@

return [
'doctrine' => [
'connection' => [
'connection' => [
'orm_default' => [
'doctrine_mapping_types' => [
UuidBinaryType::NAME => 'binary',
UuidBinaryOrderedTimeType::NAME => 'binary',
],
],
],
'driver' => [
'driver' => [
'orm_default' => [
'class' => MappingDriverChain::class,
'drivers' => [
Expand All @@ -46,20 +46,20 @@
'paths' => __DIR__ . '/../../src/App/src/Entity',
],
],
'types' => [
'types' => [
UuidType::NAME => UuidType::class,
UuidBinaryType::NAME => UuidBinaryType::class,
UuidBinaryOrderedTimeType::NAME => UuidBinaryOrderedTimeType::class,
],
'fixtures' => getcwd() . '/data/doctrine/fixtures',
'fixtures' => getcwd() . '/data/doctrine/fixtures',
'configuration' => [
'orm_default' => [
'entity_listener_resolver' => EntityListenerResolver::class,
'result_cache' => 'filesystem',
'metadata_cache' => 'filesystem',
'query_cache' => 'filesystem',
'hydration_cache' => 'array',
'second_level_cache' => [
'result_cache' => 'filesystem',
'metadata_cache' => 'filesystem',
'query_cache' => 'filesystem',
'hydration_cache' => 'array',
'second_level_cache' => [
'enabled' => true,
'default_lifetime' => 3600,
'default_lock_lifetime' => 60,
Expand All @@ -68,9 +68,9 @@
],
],
],
'cache' => [
'array' => [
'class' => ArrayAdapter::class,
'cache' => [
'array' => [
'class' => ArrayAdapter::class,
],
'filesystem' => [
'class' => FilesystemAdapter::class,
Expand Down

0 comments on commit f5c8a37

Please sign in to comment.