Home
last modified time | relevance | path

Searched refs:class (Results 1676 – 1700 of 2173) sorted by last modified time

1...<<61626364656667686970>>...87

/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMethodMetadata.php20 public $class; variable in Metadata\\MethodMetadata
32 public function __construct(string $class, string $name) argument
34 $this->class = $class;
37 $this->reflection = new \ReflectionMethod($class, $name);
H A DPropertyMetadata.php20 public $class; variable in Metadata\\PropertyMetadata
27 public function __construct(string $class, string $name) argument
29 $this->class = $class;
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
H A DMetadataFactoryTest.php23 ->will($this->returnCallback(function ($class) {
24 return new ClassMetadata($class->getName());
31 ->will($this->returnCallback(function ($class) {
32 return new ClassMetadata($class->getName());
51 ->will($this->returnCallback(function ($class) {
52 return new MergeableClassMetadata($class->getName());
59 ->will($this->returnCallback(function ($class) {
60 return new MergeableClassMetadata($class->getName());
78 ->will($this->returnCallback(function ($class) {
79 $metadata = new MergeableClassMetadata($class->name);
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DEventDispatcher.php52 $this->listeners[$eventName][] = [$callable, $class, $format, $interface];
64 $class = $eventData['class'] ?? null;
67 … $this->listeners[$eventData['event']][] = [[$subscriber, $method], $class, $format, $interface];
72 public function hasListeners(string $eventName, string $class, string $format): bool argument
78 if (!isset($this->classListeners[$eventName][$class][$format])) {
79 …$this->classListeners[$eventName][$class][$format] = $this->initializeListeners($eventName, $class
82 return !!$this->classListeners[$eventName][$class][$format];
85 public function dispatch(string $eventName, string $class, string $format, Event $event): void argument
93 $objectClass = $realClass !== $class ? ($realClass . $class) : $class;
96 …eners[$eventName][$objectClass][$format] = $this->initializeListeners($eventName, $class, $format);
[all …]
H A DEventDispatcherInterface.php12 public function hasListeners(string $eventName, string $class, string $format): bool; argument
20 public function dispatch(string $eventName, string $class, string $format, Event $event): void; argument
27 …public function addListener(string $eventName, $callable, ?string $class = null, ?string $format =… argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/Subscriber/
H A DDoctrineProxySubscriber.php78 …eSerializeTypedProxy(PreSerializeEvent $event, string $eventName, string $class, string $format, E… argument
91 if (strtolower($class) !== strtolower($parentClassName)) {
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Dconstant.rst8 can use either global constants or class constants:
/plugin/findologicxmlexport/vendor/hoa/stream/Filter/
H A DFilter.php100 * @param mixed $class Class name or instance.
108 $class, argument
116 if (is_object($class)) {
117 $class = get_class($class);
124 $class
128 if (false === class_exists($class, false)) {
133 [$class, $name]
137 return stream_filter_register($name, $class);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst31 class MyObject
57 class VersionedObject
98 class BlogPost
129 … want to control more precisely what is serialized because you may have the same class at different
136 class User
238 class User
249 class Post
280 class MyObject
318 class MyObject
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DNullDriver.php13 public function loadMetadataForClass(\ReflectionClass $class): ?BaseClassMetadata argument
15 $classMetadata = new ClassMetadata($name = $class->name);
16 $fileResource = $class->getFilename();
H A DAnnotationDriver.php77 public function loadMetadataForClass(\ReflectionClass $class): ?BaseClassMetadata argument
79 $classMetadata = new ClassMetadata($name = $class->name);
80 $fileResource = $class->getFilename();
92 foreach ($this->reader->getClassAnnotations($class) as $annot) {
130 foreach ($class->getMethods() as $method) {
157 foreach ($class->getProperties() as $property) {
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md69 The `Hoa\Consistency\Consistency` class ensures foreward and backward
104 `Foo\Bar\Exception` class in the `Foo/Bar/Exception.php` file. But after few
114 Another example is the “entry-class” (informal naming).
165 * `'class::method'` as a string,
166 * `'class', 'method'` as 2 string arguments,
170 * `['class', 'method']` as an array of strings,
173 To use it, simply instanciate the `Hoa\Consistency\Xcallable` class and use it
/plugin/findologicxmlexport/vendor/hoa/math/
H A DREADME.md71 `Hoa\Math\Visitor\Arithmetic` class.
/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DREADME.md69 static `getInstance` method on the `Hoa\Protocol\Protocol` class which
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DCHANGELOG.md28 * Documentation: Fix class description. (Ivan Enderlin, 2017-02-02T15:05:55+01:00)
51 * Test: Use `::class`. (Ivan Enderlin, 2016-12-14T08:13:27+01:00)
/plugin/findologicxmlexport/vendor/jms/metadata/src/Cache/
H A DFileCache.php28 public function load(string $class): ?ClassMetadata argument
30 $path = $this->dir . '/' . strtr($class, '\\', '-') . '.cache.php';
81 public function evict(string $class): void argument
83 $path = $this->dir . '/' . strtr($class, '\\', '-') . '.cache.php';
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
H A DFileLocatorInterface.php9 public function findFileForClass(\ReflectionClass $class, string $extension): ?string; argument
H A DLazyLoadingDriver.php31 public function loadMetadataForClass(\ReflectionClass $class): ?ClassMetadata argument
33 return $this->container->get($this->realDriverId)->loadMetadataForClass($class);
/plugin/findologicxmlexport/vendor/jms/metadata/tests/Driver/
H A DAbstractFileDriverTest.php35 $class = new \ReflectionClass('\stdClass');
39 ->with($class, self::$extension)
45 ->with($class, 'Some\Path')
48 $this->assertSame($metadata, $this->driver->loadMetadataForClass($class));
53 $class = new \ReflectionClass('\stdClass');
57 ->with($class, self::$extension)
60 $this->assertSame(null, $this->driver->loadMetadataForClass($class));
65 $class = new \ReflectionClass('\stdClass');
72 $this->assertSame(['\stdClass'], $this->driver->getAllClassNames($class));
83 $class = new \ReflectionClass('\stdClass');
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md17 - Using @Until and @Since on class level [\#1048](https://github.com/schmittjoh/serializer/issues/1…
40 - Add class properties inheritance for extending classes \(e.g. XmlRoot\) [\#396](https://github.co…
55 - DateTime converted to ArrayObject instead of string in custom visitor class [\#1017](https://gith…
165 - Event Listeners are "lowercasing" class names for event match [\#624](https://github.com/schmittj…
401 - The sub-class "Proxy-Class" is not listed in the discriminator of the base class "DiscriminatorCl…
428 - Is it possible to use @XmlNamespace & @XmlRoot in a class at same time ? [\#759](https://github.c…
466 - getClassName regex may incorrectly retrieve a false class name from comments above the class. [\#…
482 - SimpleObjectProxy is not implement abstract methods of Proxy class [\#287](https://github.com/sch…
598 - Serializer working with parent class [\#376](https://github.com/schmittjoh/serializer/issues/376)
689 - Deserialization fails when discriminator base class extends another class [\#182](https://github.…
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Devent_system.rst12 on the other hand, can be simple callables and do not require a dedicated class.
16 class MyEventSubscriber implements JMS\Serializer\EventDispatcher\EventSubscriberInterface
24 … 'class' => 'AppBundle\\Entity\\SpecificClass', // if no class, subscribe to every serialization
H A Dhandlers.rst42 class MyHandler implements SubscribingHandlerInterface
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DExpressionPropertyMetadata.php25 public function __construct(string $class, string $fieldName, $expression) argument
27 $this->class = $class;
H A DPropertyMetadata.php138 public function __construct(string $class, string $name) argument
140 parent::__construct($class, $name);
143 $class = $this->getReflection()->getDeclaringClass();
144 … $this->forceReflectionAccess = $class->isInternal() || $class->getProperty($name)->isStatic();
157 $class = $this->getReflection()->getDeclaringClass();
160 …if ($class->hasMethod('get' . $this->name) && $class->getMethod('get' . $this->name)->isPublic()) {
162 …} elseif ($class->hasMethod('is' . $this->name) && $class->getMethod('is' . $this->name)->isPublic…
164 …} elseif ($class->hasMethod('has' . $this->name) && $class->getMethod('has' . $this->name)->isPubl…
172 …if ($class->hasMethod('set' . $this->name) && $class->getMethod('set' . $this->name)->isPublic()) {
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DBaseDriverTest.php548 $class = 'JMS\Serializer\Tests\Fixtures\PersonSecret';
549 $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass($class));
551 $p = new PropertyMetadata($class, 'name');
556 $p = new PropertyMetadata($class, 'gender');
562 $p = new PropertyMetadata($class, 'age');
571 $class = ObjectWithVirtualPropertiesAndDuplicatePropName::class;
572 $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass($class));
574 $p = new PropertyMetadata($class, 'id');
578 $p = new PropertyMetadata($class, 'name');
582 $p = new VirtualPropertyMetadata($class, 'foo');
[all …]

1...<<61626364656667686970>>...87