Home
last modified time | relevance | path

Searched refs:interface (Results 301 – 325 of 701) sorted by path

1...<<11121314151617181920>>...29

/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md43 * Interfaces: One interface per capability a stream can offer.
126 Finally, the highest interface is `Stream`, defining the `getStream`
128 must extend this interface.
379 interface. It is a combination of two other interfaces in the same
382 The `Stream` interface requires to implement several methods related to a stream, such as:
400 The `File` interface requires to implement other methods related to stream acting as a file, such a…
512 `Hoa\Stream\Wrapper\IWrapper\Stream` interface).
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DCHANGELOG.md4 * Test: Add the `Decorrelated` interface. (Ivan Enderlin, 2016-10-25T07:58:13+02:00)
/plugin/findologicxmlexport/vendor/hoa/visitor/
H A DREADME.md64 element to visit will implement the `Hoa\Visitor\Element` interface and the
65 visitor will implement the `Hoa\Visitor\Visit` interface. The first one will ask
/plugin/findologicxmlexport/vendor/jms/metadata/
H A DREADME.md18 interface for all of them.
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMetadataFactory.php187 foreach ($class->getInterfaces() as $interface) {
188 if (isset($addedInterfaces[$interface->getName()])) {
191 $addedInterfaces[$interface->getName()] = true;
193 $newHierarchy[] = $interface;
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md164 - Can't hint interface using @Type to trigger custom handler [\#631](https://github.com/schmittjoh/…
222 - Introduce graph navigator interface [\#876](https://github.com/schmittjoh/serializer/pull/876) ([…
698 - \[RFC\] Introduce normalizer\denormalizer interface [\#646](https://github.com/schmittjoh/seriali…
986 - Use the AnnotationReader interface in the SerializerBuilder, instead of the implemented Annotatio…
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DEventDispatcher.php50 …entName, $callable, ?string $class = null, ?string $format = null, ?string $interface = null): void argument
52 $this->listeners[$eventName][] = [$callable, $class, $format, $interface];
66 $interface = $eventData['interface'] ?? null;
67 … $this->listeners[$eventData['event']][] = [[$subscriber, $method], $class, $format, $interface];
H A DEventDispatcherInterface.php27 …ntName, $callable, ?string $class = null, ?string $format = null, ?string $interface = null): void; argument
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md42 - an object or interface such as the TypeResolver class (`@var TypeResolver`
168 > The resolve method of the TypeResolver only returns object with the interface `Type` and the FQSE…
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md9 * [fixed] Doubling methods where class has additional arguments to interface (@webimpress)
62 …faces that the class itself implements, or when the stubbed class is an interface itself (thanks @…
H A DREADME.md101 it should implement some interface. Obviously, objects in PHP can implement multiple
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/
H A DCachedDoubler.php61 foreach ($interfaces as $interface) {
62 $parts[] = $interface->getName();
H A DDoubler.php95 foreach ($interfaces as $interface) {
96 if (!$interface instanceof ReflectionClass) {
100 is_object($interface) ? get_class($interface).' class' : gettype($interface)
H A DLazyDouble.php71 * @param string|ReflectionClass $interface
76 public function addInterface($interface) argument
84 if (!$interface instanceof ReflectionClass) {
85 if (!interface_exists($interface)) {
87 sprintf('Interface %s not found.', $interface),
88 $interface
92 $interface = new ReflectionClass($interface);
95 $this->interfaces[] = $interface;
H A DNameGenerator.php41 foreach ($interfaces as $interface) {
42 $parts[] = $interface->getShortName();
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DMagicCallPatch.php54 $types = array_filter($node->getInterfaces(), function ($interface) {
55 return 0 !== strpos($interface, 'Prophecy\\');
H A DTraversablePatch.php41 foreach ($node->getInterfaces() as $interface) {
42 if ('Traversable' !== $interface && !is_subclass_of($interface, 'Traversable')) {
45 if ('Iterator' === $interface || is_subclass_of($interface, 'Iterator')) {
48 … if ('IteratorAggregate' === $interface || is_subclass_of($interface, 'IteratorAggregate')) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php48 array_map(function ($interface) {return '\\'.$interface;}, $class->getInterfaces())
H A DClassMirror.php64 foreach ($interfaces as $interface) {
65 if (!$interface instanceof ReflectionClass) {
69 is_object($interface) ? get_class($interface).' class' : gettype($interface)
72 if (false === $interface->isInterface()) {
76 $interface->getName()
80 $this->reflectInterfaceToNode($interface, $node);
121 private function reflectInterfaceToNode(ReflectionClass $interface, Node\ClassNode $node) argument
123 $node->addInterface($interface->getName());
125 foreach ($interface->getMethods() as $method) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DClassNode.php56 * @param string $interface
58 public function addInterface($interface) argument
60 if ($this->hasInterface($interface)) {
64 array_unshift($this->interfaces, $interface);
68 * @param string $interface
72 public function hasInterface($interface) argument
74 return in_array($interface, $this->interfaces);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/
H A DClassAndInterfaceTagRetriever.php63 foreach($interfaces as $interface) {
64 $tagList = array_merge($tagList, $this->classRetriever->getTagList($interface));
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DObjectProphecy.php80 * @param string $interface
84 public function willImplement($interface) argument
86 $this->lazyDouble->addInterface($interface);
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php357 $interface = false;
366 $interface = $token->getName();
369 $this->interfaces[$interface] = [
422 $interface === false) {
447 $this->interfaces[$interface]['methods'][$name] = $tmp;
462 $interface = false;
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dclass_implementing_interface_call_parent_constructor.phpt5 interface IFoo
H A Dclass_implementing_interface_dont_call_parent_constructor.phpt5 interface IFoo

1...<<11121314151617181920>>...29