Home
last modified time | relevance | path

Searched refs:array (Results 351 – 375 of 765) sorted by path

1...<<11121314151617181920>>...31

/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DREADME.md100 `Hoa\Iterator\Map` allows to iterate an array. It extends
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DIteratorIterator.php82 $array = [
86 $iterator = new LUT\Recursive\Map($array),
102 $array = [
106 $iterator = new LUT\Recursive\Map($array),
131 $array = [
135 $iterator = new LUT\Recursive\Map($array),
H A DMap.php80 $array = [
85 $iterator = new LUT\Recursive\Map($array)
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DOut.php101 * @param array $array Array.
104 public function writeArray(array $array); argument
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md341 All listener bucket data is an array containing the following pairs:
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DREADME.md180 $solutions = array();
/plugin/findologicxmlexport/vendor/jms/metadata/
H A DREADME.md39 $driver = new DriverChain(array(
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md132 - MaxDepth shows empty array property [\#148](https://github.com/schmittjoh/serializer/issues/148)
373 - \#784 fix with inline array of type array\<K, V\> [\#785](https://github.com/schmittjoh/serialize…
377 - inline array with type array\<K, V\> not serialized [\#784](https://github.com/schmittjoh/seriali…
486 - Json array serialisation [\#242](https://github.com/schmittjoh/serializer/issues/242)
561 - Object to array normalization [\#354](https://github.com/schmittjoh/serializer/issues/354)
599 - Add support for array format [\#374](https://github.com/schmittjoh/serializer/issues/374)
666 - Max depth produces array of nulls [\#671](https://github.com/schmittjoh/serializer/issues/671)
709 - Warning: array\_key\_exists\(\) expects parameter 2 to be array, string given [\#70](https://gith…
793 - Serialize to array [\#518](https://github.com/schmittjoh/serializer/issues/518)
937 - Serialize to/from array? [\#133](https://github.com/schmittjoh/serializer/issues/133)
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst55 function($visitor, MyObject $obj, array $type) {
H A Devent_system.rst20 return array(
21 array(
H A Dhandlers.rst19 function($visitor, MyObject $obj, array $type) {
62 …rializeDateTimeToJson(JsonSerializationVisitor $visitor, \DateTime $date, array $type, Context $co…
67 …rializeDateTimeToJson(JsonDeserializationVisitor $visitor, $dateAsString, array $type, Context $co…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Darrays.rst8 to configure its behavior, but if we try to serialize directly an array
10 array "type"
27 …$serializer->serialize([1, 2], SerializationContext::create()->setInitialType('array')); // [1, 2]
28 …$serializer->serialize([1 => 2], SerializationContext::create()->setInitialType('array')); // {"1…
29 …$serializer->serialize(['a', 'b'], SerializationContext::create()->setInitialType('array')); // […
30 …$serializer->serialize(['c' => 'd'], SerializationContext::create()->setInitialType('array')); // …
32 // typehint as strict array, keys will be always discarded
33 …$serializer->serialize([], SerializationContext::create()->setInitialType('array<integer>')); // …
34 …$serializer->serialize([1, 2], SerializationContext::create()->setInitialType('array<integer>')); …
36 …$serializer->serialize(['c' => 'd'], SerializationContext::create()->setInitialType('array<string>…
[all …]
H A Dexclusion_strategies.rst119 …$serializer->serialize(new BlogPost(), 'json', SerializationContext::create()->setGroups(array('li…
123 …$serializer->serialize(new BlogPost(), 'json', SerializationContext::create()->setGroups(array('De…
146 public function __construct($name, User $manager = null, array $friends = null)
161 array(
165 array(
181 $context = SerializationContext::create()->setGroups(array(
186 'manager' => array( // Override the groups for the manager of John
191 'friends' => array( // Override the groups for the friends of John
193 'manager' => array( // Override the groups for the John friends' manager
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst341 | array | An array with arbitrary keys, and valu…
343 | array<T> | A list of type T (T can be any availab…
345 | | array<string>, array<MyNamespace\MyObj…
347 | array<K, V> | A map of keys of type K to values of t…
348 | | Examples: array<string, string>, …
461 * @Type("array<string, string>")
626 keys of the array are not important.
641 private $comments = array(
674 Similar to @XmlList, but the keys of the array are meaningful.
678 This allows you to use the keys of an array as xml tags.
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DObjectWithEmptyArrayAndHash.php20 private $array = []; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithEmptyArrayAndHash
H A DObjectWithXmlKeyValuePairs.php15 private $array = [ variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlKeyValuePairs
/plugin/findologicxmlexport/vendor/jms/serializer/tests/JMS/Serializer/Tests/Fixtures/
H A DObjectWithInlineArray.php15 public $array; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithInlineArray
18 * @param array $array
20 public function __construct(array $array) argument
22 $this->array = $array;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/
H A DFirstClassListCollection.yml5 type: array<int>
H A DFirstClassMapCollection.yml5 type: array<string,int>
H A DObjectWithAbsentXmlListNode.yml4 type: array
8 type: array
12 type: array
H A DObjectWithXmlKeyValuePairs.yml3 array:
4 type: array
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DJsonSerializationTest.php371 * @param array $array
377 public function testTypeHintedArraySerialization(array $array, $expected, $context = null) argument
379 self::assertEquals($expected, $this->serialize($array, $context));
412 * @param array $array
418 …public function testTypeHintedArrayAndStdClassSerialization(array $array, $expected, $context = nu… argument
420 self::assertEquals($expected, $this->serialize($array, $context));
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md151 - `DeepCopy\TypeMatcher` applies on any element found in graph, including array elements.
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php138 * @param array $array
141 private function copyArray(array $array) argument
143 foreach ($array as $key => $value) {
144 $array[$key] = $this->recursiveCopy($value);
147 return $array;
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md40 - a composite such as an array of string (`@var string[]`).

1...<<11121314151617181920>>...31