ヤミ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
/
gedmo
/
doctrine-extensions
/
src
/
Mapping
/
Event
/
Viewing: AdapterInterface.php
<?php /* * This file is part of the Doctrine Behavioral Extensions package. * (c) Gediminas Morkevicius <gediminas.morkevicius@gmail.com> http://www.gediminasm.org * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Gedmo\Mapping\Event; use Doctrine\Common\EventArgs; use Doctrine\ODM\MongoDB\UnitOfWork as MongoDBUnitOfWork; use Doctrine\ORM\UnitOfWork as ORMUnitOfWork; use Doctrine\Persistence\Event\LifecycleEventArgs; use Doctrine\Persistence\Mapping\ClassMetadata; use Doctrine\Persistence\ObjectManager; /** * Doctrine event adapter for Doctrine extensions. * * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com> * * @method LifecycleEventArgs createLifecycleEventArgsInstance(object $object, ObjectManager $manager) * @method object getObject() */ interface AdapterInterface { /** * @deprecated since gedmo/doctrine-extensions 3.5, will be removed in version 4.0. * * Calls a method on the event args object. * * @param string $method * @param array $args * * @return mixed */ public function __call($method, $args); /** * Set the event args object. * * @return void */ public function setEventArgs(EventArgs $args); /** * Get the name of the domain object. * * @return string */ public function getDomainObjectName(); /** * Get the name of the manager used by this adapter. * * @return string */ public function getManagerName(); /** * Get the root object class, handles inheritance * * @param ClassMetadata $meta * * @return string * @phpstan-return class-string */ public function getRootObjectClass($meta); /** * Get the object manager. * * @return ObjectManager */ public function getObjectManager(); /** * Gets the state of an object from the unit of work. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow The UnitOfWork as provided by the object manager * @param object $object * * @return int The object state as reported by the unit of work */ public function getObjectState($uow, $object); /** * Gets the changeset for an object from the unit of work. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow The UnitOfWork as provided by the object manager * @param object $object * * @return array */ public function getObjectChangeSet($uow, $object); /** * Get the single identifier field name. * * @param ClassMetadata $meta * * @return string */ public function getSingleIdentifierFieldName($meta); /** * Computes the changeset of an individual object, independently of the * computeChangeSets() routine that is used at the beginning of a unit * of work's commit. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow The UnitOfWork as provided by the object manager * @param ClassMetadata $meta * @param object $object * * @return void */ public function recomputeSingleObjectChangeSet($uow, $meta, $object); /** * Gets the currently scheduled object updates from the unit of work. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow The UnitOfWork as provided by the object manager * * @return array */ public function getScheduledObjectUpdates($uow); /** * Gets the currently scheduled object insertions in the unit of work. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow The UnitOfWork as provided by the object manager * * @return array */ public function getScheduledObjectInsertions($uow); /** * Gets the currently scheduled object deletions in the unit of work. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow The UnitOfWork as provided by the object manager * * @return array */ public function getScheduledObjectDeletions($uow); /** * Sets a property value of the original data array of an object. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow * @param object $object * @param string $property * @param mixed $value * * @return void */ public function setOriginalObjectProperty($uow, $object, $property, $value); /** * Clears the property changeset of the object with the given OID. * * @param ORMUnitOfWork|MongoDBUnitOfWork $uow * @param object $object * * @return void */ public function clearObjectChangeSet($uow, $object); }
Coded With 💗 by
0x6ick