1
- .. _ annotation -config :
1
+ .. _ attribute -config :
2
2
3
- @ Config
4
- =======
3
+ #[ Config]
4
+ =========
5
5
6
- This annotation is used to configure default values for configurable entity classes.
6
+ This attribute is used to configure default values for configurable entity classes.
7
7
8
- Options
9
- -------
8
+ Arguments
9
+ ---------
10
10
11
11
``defaultValues ``
12
12
^^^^^^^^^^^^^^^^^
@@ -16,17 +16,13 @@ Configures default values for particular config options on a per property basis:
16
16
.. code-block :: php
17
17
18
18
// ...
19
- use Oro\Bundle\EntityConfigBundle\Metadata\Annotation\Config;
20
-
21
- /**
22
- * @Config(
23
- * defaultValues={
24
- * "dataaudit"={
25
- * "auditable"=true
26
- * }
27
- * }
28
- * )
29
- */
19
+ use Oro\Bundle\EntityConfigBundle\Metadata\Attribute\Config;
20
+
21
+ #[Config(
22
+ defaultValues: [
23
+ "dataaudit" => ["auditable" => true]
24
+ ]
25
+ )]
30
26
class User
31
27
{
32
28
// ...
@@ -391,13 +387,11 @@ The route name of the view that shows the datagrid of available records:
391
387
.. code-block :: php
392
388
393
389
// ...
394
- use Oro\Bundle\EntityConfigBundle\Metadata\Annotation \Config;
390
+ use Oro\Bundle\EntityConfigBundle\Metadata\Attribute \Config;
395
391
396
- /**
397
- * @Config(
398
- * routeName="oro_user_index"
399
- * )
400
- */
392
+ #[Config(
393
+ routeName: "oro_user_index"
394
+ )]
401
395
class User
402
396
{
403
397
// ...
@@ -412,13 +406,11 @@ The route name of a controller that shows a particular object:
412
406
.. code-block :: php
413
407
414
408
// ...
415
- use Oro\Bundle\EntityConfigBundle\Metadata\Annotation \Config;
409
+ use Oro\Bundle\EntityConfigBundle\Metadata\Attribute \Config;
416
410
417
- /**
418
- * @Config(
419
- * routeView="oro_user_view"
420
- * )
421
- */
411
+ #[Config(
412
+ routeView: "oro_user_view"
413
+ )]
422
414
class User
423
415
{
424
416
// ...
@@ -432,13 +424,11 @@ The route name of a controller that creates an object:
432
424
.. code-block :: php
433
425
434
426
// ...
435
- use Oro\Bundle\EntityConfigBundle\Metadata\Annotation \Config;
427
+ use Oro\Bundle\EntityConfigBundle\Metadata\Attribute \Config;
436
428
437
- /**
438
- * @Config(
439
- * routeCreate="oro_user_create"
440
- * )
441
- */
429
+ #[Config(
430
+ routeCreate: "oro_user_create"
431
+ )]
442
432
class User
443
433
{
444
434
// ...
@@ -453,13 +443,11 @@ The route name of controller action that updates an object:
453
443
.. code-block :: php
454
444
455
445
// ...
456
- use Oro\Bundle\EntityConfigBundle\Metadata\Annotation \Config;
446
+ use Oro\Bundle\EntityConfigBundle\Metadata\Attribute \Config;
457
447
458
- /**
459
- * @Config(
460
- * routeUpdate="oro_user_update"
461
- * )
462
- */
448
+ #[Config(
449
+ routeUpdate: "oro_user_update"
450
+ )]
463
451
class User
464
452
{
465
453
// ...
0 commit comments