Home
last modified time | relevance | path

Searched refs:array (Results 476 – 500 of 765) sorted by last modified time

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

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dwsdl_class_namespace.phpt23 public function __construct($wsdl, array $options)
H A Dwsdl_class_partial.phpt2 …ject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch', array('doGoogleSearch'))
16 array('doGoogleSearch')
22 public function __construct($wsdl, array $options)
/plugin/findologicxmlexport/vendor/sebastian/code-unit-reverse-lookup/
H A D.php_cs11 array(
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DMockObjectComparator.php39 $array = parent::toArray($object);
41 unset($array['__phpunit_invocationMocker']);
43 return $array;
/plugin/findologicxmlexport/vendor/sebastian/exporter/
H A DREADME.md94 print $exporter->export(array(array(1,2,3), array("",0,FALSE)));
104 $array = array();
105 $array['self'] = &$array;
106 print $exporter->export($array);
128 print $exporter->shortenedExport(array());
131 print $exporter->shortenedExport(array(1,2,3,4,5));
/plugin/findologicxmlexport/vendor/sebastian/exporter/src/
H A DExporter.php64 $array = $data;
67 foreach ($array as $key => $value) {
151 $array = array();
167 $array[$key] = $val;
177 unset($array['__storage']);
179 unset($array['storage']);
183 unset($array['__key']);
194 return $array;
254 $array = $value;
258 if (count($array) > 0) {
[all …]
/plugin/findologicxmlexport/vendor/sebastian/exporter/tests/
H A DExporterTest.php192 $array = array(
205 $array['self'] = &$array;
263 $this->trimNewline($this->exporter->export($array))
272 $array = array(
288 array($array, 'Array (...)'),
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DDumperTest.php25 protected $array = [ variable in Symfony\\Component\\Yaml\\Tests\\DumperTest
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced_legacy.rst443 array of several possible values.
583 * @return array<array> First array of unary operators, second array of binary operators
590 * @return array An array of global variables
681 method. This method must return an array of filters to add to the Twig
696 As you can see in the above code, the ``getFilters()`` method returns an array
772 ``getTokenParsers()`` method. This method must return an array of tags to add
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DObjectWithXmlKeyValuePairs.php15 private $array = [ variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlKeyValuePairs
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dannotations.rst191 AnnotationRegistry::registerLoader(array($loader, "loadClass"));
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DREADME.md106 <true> | <false> | <null> | string() | object() | array() | number()
120 #array:
185 * > > > #array
203 > #array
205 > > #array
207 > > > #array
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFinder.php655 $array = iterator_to_array($_iterator);
658 uasort($array, $sort);
661 return new Iterator\Map($array);
H A DWrite.php198 * @param array $array Array.
201 public function writeArray(array $array) argument
203 $array = var_export($array, true);
205 return $this->write($array, strlen($array));
/plugin/findologicxmlexport/vendor/hoa/file/Link/
H A DReadWrite.php330 * @param array $array Array.
333 public function writeArray(array $array) argument
335 $array = var_export($array, true);
337 return $this->write($array, strlen($array));
H A DWrite.php197 * @param array $array Array.
200 public function writeArray(array $array) argument
202 $array = var_export($array, true);
204 return $this->write($array, strlen($array));
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DREADME.md100 `Hoa\Iterator\Map` allows to iterate an array. It extends
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md341 All listener bucket data is an array containing the following pairs:
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DOut.php101 * @param array $array Array.
104 public function writeArray(array $array); argument
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
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
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 …]
/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/hoa/consistency/
H A DREADME.md170 * `['class', 'method']` as an array of strings,
171 * `[$object, 'method']` as an array.
187 but the arguments are passed as an array:
/plugin/findologicxmlexport/vendor/hoa/file/Temporary/
H A DReadWrite.php330 * @param array $array Array.
333 public function writeArray(array $array) argument
335 $array = var_export($array, true);
337 return $this->write($array, strlen($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 …]

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