From 82723f13a4e22cdf234158c9459f20b8d7ade092 Mon Sep 17 00:00:00 2001
From: Masaharu Suizu <30203831+suizumasahar01@users.noreply.github.com>
Date: Wed, 10 Apr 2024 19:48:20 +0900
Subject: [PATCH] [Console] Update monolog_console.rst
---
logging/monolog_console.rst | 1 +
reference/constraints/UniqueEntity.rst | 12 ++++++------
reference/twig_reference.rst | 15 ++++++++++++---
3 files changed, 19 insertions(+), 9 deletions(-)
diff --git a/logging/monolog_console.rst b/logging/monolog_console.rst
index 133185937c7..6df9111eca8 100644
--- a/logging/monolog_console.rst
+++ b/logging/monolog_console.rst
@@ -46,6 +46,7 @@ The example above could then be rewritten as::
public function __construct(LoggerInterface $logger)
{
+ parent::__construct();
$this->logger = $logger;
}
diff --git a/reference/constraints/UniqueEntity.rst b/reference/constraints/UniqueEntity.rst
index 0f089b2518b..5ae4b29e8ed 100644
--- a/reference/constraints/UniqueEntity.rst
+++ b/reference/constraints/UniqueEntity.rst
@@ -211,8 +211,8 @@ Consider this example:
* @ORM\Entity
* @UniqueEntity(
* fields={"host", "port"},
- * errorPath="port",
- * message="This port is already in use on that host."
+ * message="This port is already in use on that host.",
+ * errorPath="port"
* )
*/
class Service
@@ -240,8 +240,8 @@ Consider this example:
#[ORM\Entity]
#[UniqueEntity(
fields: ['host', 'port'],
- errorPath: 'port',
message: 'This port is already in use on that host.',
+ errorPath: 'port',
)]
class Service
{
@@ -259,8 +259,8 @@ Consider this example:
constraints:
- Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity:
fields: [host, port]
- errorPath: port
message: 'This port is already in use on that host.'
+ errorPath: port
.. code-block:: xml
@@ -276,8 +276,8 @@ Consider this example:
hostport
-
+
@@ -300,8 +300,8 @@ Consider this example:
{
$metadata->addConstraint(new UniqueEntity([
'fields' => ['host', 'port'],
- 'errorPath' => 'port',
'message' => 'This port is already in use on that host.',
+ 'errorPath' => 'port',
]));
}
}
diff --git a/reference/twig_reference.rst b/reference/twig_reference.rst
index 481cbd23898..1c20264352c 100644
--- a/reference/twig_reference.rst
+++ b/reference/twig_reference.rst
@@ -391,9 +391,18 @@ humanize
``text``
**type**: ``string``
-Makes a technical name human readable (i.e. replaces underscores by spaces
-or transforms camelCase text like ``helloWorld`` to ``hello world``
-and then capitalizes the string).
+Transforms the given string into a human readable string (by replacing underscores
+with spaces, capitalizing the string, etc.) It's useful e.g. when displaying
+the names of PHP properties/variables to end users:
+
+.. code-block:: twig
+
+ {{ 'dateOfBirth'|humanize }} {# renders: Date of birth #}
+ {{ 'DateOfBirth'|humanize }} {# renders: Date of birth #}
+ {{ 'date-of-birth'|humanize }} {# renders: Date-of-birth #}
+ {{ 'date_of_birth'|humanize }} {# renders: Date of birth #}
+ {{ 'date of birth'|humanize }} {# renders: Date of birth #}
+ {{ 'Date Of Birth'|humanize }} {# renders: Date of birth #}
.. _reference-twig-filter-trans: