Skip to content

[Uid] Remove experimental for UID #14891

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions components/uid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ The UID Component

.. versionadded:: 5.1

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

Installation
------------
Expand Down Expand Up @@ -157,12 +156,12 @@ entity primary keys::
private $id;

// ...

public function getId(): ?Uuid
{
return $this->id;
}

// ...
}

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

use Symfony\Bridge\Doctrine\IdGenerator\UlidGenerator;
use Symfony\Component\Uid\Ulid;
use Symfony\Component\Uid\Ulid;

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

// ...

public function getId(): ?Ulid
{
return $this->id;
}

// ...

}

.. versionadded:: 5.2
Expand Down
2 changes: 1 addition & 1 deletion notifier.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ the users (e.g. SMS, Slack messages, emails, push notifications, etc.). The
Notifier component in Symfony is an abstraction on top of all these
channels. It provides a dynamic way to manage how the messages are sent.
Get the Notifier installed using:

uid
.. code-block:: terminal

$ composer require symfony/notifier
Expand Down