From 2120872770377af6ebf5532993ec099f3decd5d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= <postmaster@greg0ire.fr> Date: Tue, 20 Mar 2018 11:37:12 +0100 Subject: [PATCH] Adjust width --- hello.css | 3 +++ index.md | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/hello.css b/hello.css index a0a9d71..92574ef 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 1e9018f..3171db0 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' -- GitLab