我如何使用 php8 属性而不是学说中的注释?

How can i use php8 attributes instead of annotations in doctrine?

这是我想使用的:

#[ORM\Column(type: "string")]

而不是这个:

/**
 *  @ORM\Column(type="string")
 */

但是我收到了这个错误:

(error: Class 'Column' is not annotated with 'Attribute' )

是因为Doctrine还不支持,还是我漏了什么?

编辑:Doctrine 2.9 is now released 支持 PHP 8 个属性!

PHP Doctrine ORM 2.9.x分支中合并了8个注解,尚未发布: https://github.com/doctrine/orm/pull/8266

以下是与此功能相关的文档参考: https://www.doctrine-project.org/projects/doctrine-orm/en/current/reference/attributes-reference.html

正如@Seb33300 所说,是的,它是 Doctrine ORM 2.9 中的 now possible。但是对于 Symfony,您需要做的远不止于此。以下是升级步骤的完整列表:

  1. 升级 Doctrine ORM:"doctrine/orm": "^2.9".

  2. 升级学说包:"doctrine/doctrine-bundle": "^2.4".

  3. 设置doctrine.orm.mappings.App.type: attribute(默认设置为annotation):

    # config/packages/doctrine.yaml
    
    doctrine:
      orm:
        mappings:
          App:
            type: attribute
    
  4. 对您的实体应用类似的更改:

    --- Dummy.php.old     Mon Jun 07 00:00:00 2021
    +++ Dummy.php         Mon Jun 07 00:00:00 2021
    @@ -7,15 +7,11 @@
     use App\Repository\DummyRepository;
     use Doctrine\ORM\Mapping as ORM;
    
    -/**
    - * @ORM\Entity(repositoryClass = DummyRepository::class)
    - */
    +#[ORM\Entity(repositoryClass: DummyRepository::class)]
     class Dummy
     {
    -    /**
    -     * @ORM\Id
    -     * @ORM\GeneratedValue
    -     * @ORM\Column(type = 'integer')
    -     */
    +    #[ORM\Id]
    +    #[ORM\GeneratedValue]
    +    #[ORM\Column(type: 'integer')]
         private $id;
     }