FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Mapping
Edit File: MappedSuperclass.php
<?php declare (strict_types=1); namespace MailPoetVendor\Doctrine\ORM\Mapping; if (!defined('ABSPATH')) exit; use Attribute; use MailPoetVendor\Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor; use MailPoetVendor\Doctrine\ORM\EntityRepository; #[\Attribute(Attribute::TARGET_CLASS)] final class MappedSuperclass implements MappingAttribute { public $repositoryClass; public function __construct(?string $repositoryClass = null) { $this->repositoryClass = $repositoryClass; } }
Save
Back