Home
last modified time | relevance | path

Searched refs:array (Results 401 – 425 of 765) sorted by last modified time

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

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/
H A DFirstClassMapCollection.yml5 type: array<string,int>
H A DObjectWithXmlKeyValuePairs.yml3 array:
4 type: array
H A DObjectWithAbsentXmlListNode.yml4 type: array
8 type: array
12 type: array
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dcustom.rst21 if so then we will pass the value array, otherwise will try to inject values into public properties…
37 public function __construct(array $values)
126 /** @var array */
127 public $array;
132 /** @var array<integer> */
135 /** @var array<SomeAnnotationClass> */
149 public function __construct(array $values)
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php1106 $array = $values = array();
1114 return $array;
1136 $array[$key] = $val;
1138 $array[] = $val;
1142 return $array;
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DCHANGELOG.md58 * TreeNode: Force the value to be an array. (Ivan Enderlin, 2016-08-08T17:31:12+02:00)
/plugin/findologicxmlexport/vendor/hoa/file/
H A DReadWrite.php329 * @param array $array Array.
332 public function writeArray(array $array) argument
334 $array = var_export($array, true);
336 return $this->write($array, strlen($array));
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dkeys.rst4 The ``keys`` filter returns the keys of an array. It is useful when you want to
5 iterate over the keys of an array:
9 {% for key in array|keys %}
H A Dmerge.rst4 The ``merge`` filter merges an array with another array:
32 If you want to ensure that some values are defined in an array (by given
H A Dsort.rst4 The ``sort`` filter sorts an array:
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dcycle.rst4 The ``cycle`` function cycles on an array of values:
15 The array can contain any number of values:
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst76 properties of a PHP object, or items of a PHP array), or the so-called
108 * check if ``foo`` is an array and ``bar`` a valid element;
118 * check if ``foo`` is an array and ``bar`` a valid element;
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Diterable.rst7 ``iterable`` checks if a variable is an array or a traversable object:
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DConfiguration.php458 foreach (['var', 'env', 'post', 'get', 'cookie', 'server', 'files', 'request'] as $array) {
459 foreach ($this->xpath->query('php/' . $array) as $var) {
463 $result[$array][$name] = $this->getBoolean($value, $value);
500 foreach (['var', 'post', 'get', 'cookie', 'server', 'files', 'request'] as $array) {
502 switch ($array) {
512 $target = &$GLOBALS['_' . strtoupper($array)];
516 foreach ($configuration[$array] as $name => $value) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DArrayAccessible.php5 private $array; variable in ArrayAccessible
7 public function __construct(array $array = []) argument
9 $this->array = $array;
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dnonexistent_class.phpt2 PHPUnit_Framework_MockObject_Generator::generate('NonExistentClass', array(), 'MockFoo', true, true)
11 array(),
44 return call_user_func_array(array($expects, 'method'), func_get_args());
H A Dscalar_type_declarations.phpt2 PHPUnit_Framework_MockObject_Generator::generate('Foo', array(), 'MockFoo', true, true)
22 array(),
44 $arguments = array($baz);
73 return call_user_func_array(array($expects, 'method'), func_get_args());
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DCodeExporter.php72 * @param array $array
75 private function arrayOnlyContainsScalars(array $array) argument
79 foreach ($array as $element) {
/plugin/findologicxmlexport/vendor/sebastian/object-enumerator/
H A D.php_cs11 array(
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DnumericMappingKeys.yml2 test: A sequence with an unordered array
4 A sequence with an unordered array
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Dindex.rst10 array
35 * :doc:`Array <array>`: Provides useful filters for array manipulation;
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
H A DArray.php41 * @param array|Traversable $array An array
45 function twig_shuffle_filter($array) argument
47 if ($array instanceof Traversable) {
48 $array = iterator_to_array($array, false);
51 shuffle($array);
53 return $array;
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DREADME.md180 $solutions = array();
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst55 function($visitor, MyObject $obj, array $type) {
/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 …]

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