File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -62,15 +62,10 @@ to create each type of UUID::
6262If your UUID is generated by another system, use the ``fromString() `` method to
6363create an object and make use of the utilities available for Symfony UUIDs::
6464
65- // this value is generated somewhere else
65+ // this value is generated somewhere else (can also be in binary format)
6666 $uuidValue = 'd9e7a184-5d5b-11ea-a62a-3499710062d0';
6767 $uuid = Uuid::fromString($uuidValue);
6868
69- If your UUIDs are generated in binary format, use the ``fromBinary() `` method
70- to create the objects for them::
71-
72- $uuid = Uuid::fromBinary($uuidBinaryContents);
73-
7469Converting UUIDs
7570~~~~~~~~~~~~~~~~
7671
@@ -140,15 +135,10 @@ Instantiate the ``Ulid`` class to generate a random ULID value::
140135If your ULID is generated by another system, use the ``fromString() `` method to
141136create an object and make use of the utilities available for Symfony ULIDs::
142137
143- // this value is generated somewhere else
138+ // this value is generated somewhere else (can also be in binary format)
144139 $ulidValue = '01E439TP9XJZ9RPFH3T1PYBCR8';
145140 $ulid = Ulid::fromString($ulidValue);
146141
147- If your ULIDs are generated in binary format, use the ``fromBinary() `` method
148- to create the objects for them::
149-
150- $ulid = Ulid::fromBinary($ulidBinaryContents);
151-
152142Converting ULIDs
153143~~~~~~~~~~~~~~~~
154144
You can’t perform that action at this time.
0 commit comments