diff --git a/hello.css b/hello.css index a0a9d71b87874c68814659b0e718f366a8ecddf8..92574ef801dfe9a812318f1fcd98a9ccb8829cec 100644 --- a/hello.css +++ b/hello.css @@ -2,6 +2,9 @@ background: blue !important; } */ +.reveal pre { + width: 1400px; +} .reveal pre code { max-height: none; padding: 20px; diff --git a/index.md b/index.md index 1e9018fabd90d655b730e275fc8a2566b6953c90..3171db09cc1cb34aa2a3e5b2e781de42f17d61ea 100644 --- a/index.md +++ b/index.md @@ -495,7 +495,13 @@ $rsm = new ResultSetMappingBuilder($entityManager); $rsm->addRootEntityFromClassMetadata(Comment::class, 'c'); -$rsm->addJoinedEntityFromClassMetadata(Article::class, 'a', 'c', 'article', ['uuid' => 'article_uuid']); +$rsm->addJoinedEntityFromClassMetadata( + Article::class, + 'a', + 'c', + 'article', + ['uuid' => 'article_uuid'] +); $query = $entityManager->createNativeQuery( <<<'SQL'