📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: JoinTable.php
<?php declare(strict_types=1); namespace Doctrine\ORM\Mapping; use Attribute; use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor; /** * @Annotation * @NamedArgumentConstructor() * @Target({"PROPERTY","ANNOTATION"}) */ #[Attribute(Attribute::TARGET_PROPERTY)] final class JoinTable implements MappingAttribute { /** * @var string|null * @readonly */ public $name; /** * @var string|null * @readonly */ public $schema; /** * @var array<JoinColumn> * @readonly */ public $joinColumns = []; /** * @var array<JoinColumn> * @readonly */ public $inverseJoinColumns = []; /** * @var array<string, mixed> * @readonly */ public $options = []; /** @param array<string, mixed> $options */ public function __construct( ?string $name = null, ?string $schema = null, $joinColumns = [], $inverseJoinColumns = [], array $options = [] ) { $this->name = $name; $this->schema = $schema; $this->joinColumns = $joinColumns instanceof JoinColumn ? [$joinColumns] : $joinColumns; $this->inverseJoinColumns = $inverseJoinColumns instanceof JoinColumn ? [$inverseJoinColumns] : $inverseJoinColumns; $this->options = $options; } }
Save