Skip to content

Commit fe888d2

Browse files
committed
minor #14891 [Uid] Remove experimental for UID (OskarStark)
This PR was merged into the 5.3-dev branch. Discussion ---------- [Uid] Remove experimental for UID Fix #14890 Commits ------- f0e6261 Remove experimental for UID
2 parents 640d3ee + f0e6261 commit fe888d2

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

components/uid.rst

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ The UID Component
1010

1111
.. versionadded:: 5.1
1212

13-
The UID component was introduced in Symfony 5.1 as an
14-
:doc:`experimental feature </contributing/code/experimental>`.
13+
The UID component was introduced in Symfony 5.1.
1514

1615
Installation
1716
------------
@@ -157,12 +156,12 @@ entity primary keys::
157156
private $id;
158157

159158
// ...
160-
159+
161160
public function getId(): ?Uuid
162161
{
163162
return $this->id;
164163
}
165-
164+
166165
// ...
167166
}
168167

@@ -287,7 +286,7 @@ There's also a Doctrine generator to help autogenerate ULID values for the
287286
entity primary keys::
288287

289288
use Symfony\Bridge\Doctrine\IdGenerator\UlidGenerator;
290-
use Symfony\Component\Uid\Ulid;
289+
use Symfony\Component\Uid\Ulid;
291290

292291
/**
293292
* @ORM\Entity(repositoryClass="App\Repository\ProductRepository")
@@ -303,14 +302,14 @@ entity primary keys::
303302
private $id;
304303

305304
// ...
306-
305+
307306
public function getId(): ?Ulid
308307
{
309308
return $this->id;
310309
}
311-
310+
312311
// ...
313-
312+
314313
}
315314

316315
.. versionadded:: 5.2

notifier.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ the users (e.g. SMS, Slack messages, emails, push notifications, etc.). The
1616
Notifier component in Symfony is an abstraction on top of all these
1717
channels. It provides a dynamic way to manage how the messages are sent.
1818
Get the Notifier installed using:
19-
19+
uid
2020
.. code-block:: terminal
2121
2222
$ composer require symfony/notifier

0 commit comments

Comments
 (0)