Home
last modified time | relevance | path

Searched refs:var (Results 376 – 400 of 620) sorted by path

1...<<11121314151617181920>>...25

/plugin/file2dw/docker/proxy/
H A Ddocker-compose.yml35 …- "/var/run/docker.sock:/tmp/docker.sock:ro" # REQUIRED: On some OSs you will have to change "left…
55 …- "/var/run/docker.sock:/var/run/docker.sock:ro" # REQUIRED: On some OSs you will have to change "…
88 - /path/to/logs:/var/log # REQUIRED: Change "left" path
/plugin/file2dw/docker/simple/
H A Ddocker-compose.yml19 - /absolute/or/relative/path/to/logs:/var/log # REQUIRED: Change "left" path
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dannotations.rst27 * @var int
35 * @var string
42 - Documentation annotations such as ``@var`` and ``@author``. These annotations are on a blacklist …
H A Dcustom.rst92 Annotation parser check the given parameters using the phpdoc annotation ``@var``,
108 /** @var mixed */
111 /** @var boolean */
114 /** @var bool */
117 /** @var float */
120 /** @var string */
123 /** @var integer */
126 /** @var array */
129 /** @var SomeAnnotationClass */
132 /** @var array<integer> */
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/
H A DEnum.php63 foreach ($values['value'] as $var) {
64 if( ! is_scalar($var)) {
67 is_object($var) ? get_class($var) : gettype($var)
72 foreach ($values['literal'] as $key => $var) {
76 $key , $var
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md150 - Consider @var annotation for type inference when deserializing [\#893](https://github.com/schmit…
320 - Alow to use "object" var in expressions when deserializing [\#827](https://github.com/schmittjoh/…
490 - Allow @var instead of @Type when deserializing [\#233](https://github.com/schmittjoh/serializer/i…
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md104 $copy = deep_copy($var);
114 $copy = $copier->copy($var);
124 function deep_copy($var)
132 return $copier->copy($var);
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php110 private function recursiveCopy($var) argument
114 return $filter->apply($var);
118 if (is_resource($var)) {
119 return $var;
123 if (is_array($var)) {
124 return $this->copyArray($var);
128 if (! is_object($var)) {
129 return $var;
133 return $this->copyObject($var);
243 * @param mixed $var
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md39 - a php primitive or pseudo-primitive such as a string or void (`@var string` or `@return void`).
40 - a composite such as an array of string (`@var string[]`).
41 - a compound such as a string or integer (`@var string|integer`).
42 - an object or interface such as the TypeResolver class (`@var TypeResolver`
43 or `@var \phpDocumentor\Reflection\TypeResolver`)
109 * @var Types\Context
118 Suppose that you would want to resolve (and expand) the type in the `@var` tag and the element name…
155 To obtain the resolved class name for the `@var` tag in the example above you can do:
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/_fixture/
H A Dclosure.php2 $function1 = function($foo, $bar) use ($var) {};
3 $function2 = function(Foo $foo, $bar) use ($var) {};
H A Dsource4.php5 public function setVariable($name, $var); argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DConfiguration.php459 foreach ($this->xpath->query('php/' . $array) as $var) {
460 $name = (string) $var->getAttribute('name');
461 $value = (string) $var->getAttribute('value');
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DStruct.php4 public $var; variable in Struct
6 public function __construct($var) argument
8 $this->var = $var;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/
H A Dphpunit-example-extension-1.0.0.phar67 * @var bool
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/_files/
H A DStruct.php19 public $var; variable in SebastianBergmann\\Comparator\\Struct
21 public function __construct($var) argument
23 $this->var = $var;
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Di18n.rst110 {{ var|default(default_value|trans) }}
132 {{ var|default(default_value|trans) }}
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Node/
H A DTrans.php78 foreach ($vars as $var) {
79 if ('count' === $var->getAttribute('name')) {
88 ->string('%'.$var->getAttribute('name').'%')
90 ->subcompile($var)
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG911 * added a way to translate strings coming from a variable ({% trans var %})
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dapi.rst398 {{ var }}
399 {{ var|raw }} {# var won't be escaped #}
400 {{ var|escape }} {# var won't be double-escaped #}
439 {{ var|upper }} {# is equivalent to {{ var|upper|escape }} #}
445 {{ var|raw|upper }} {# will be escaped #}
447 {{ var|upper|raw }} {# won't be escaped #}
457 {{ var|escape('html') }} {# will be escaped for HTML and JavaScript #}
458 {{ var }} {# will be escaped for JavaScript #}
459 {{ var|escape('js') }} {# won't be double-escaped #}
H A Drecipes.rst86 {% include var ~ '_foo.html' %}
88 If ``var`` evaluates to ``index``, the ``index_foo.html`` template will be
96 {% include var|default('index') ~ '_foo.html' %}
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Ddefault.rst9 {{ var|default('var is not defined') }}
11 {{ var.foo|default('foo item on var is not defined') }}
13 {{ var['foo']|default('foo item on var is not defined') }}
15 {{ ''|default('passed var is empty') }}
23 {{ var.method(foo|default('foo'))|default('foo') }}
H A Descape.rst75 {{ var|escape('html') }} {# won't be double-escaped #}
76 {{ var|escape(strategy) }} {# will be double-escaped #}
87 {{ var|escape(strategy)|raw }} {# won't be double-escaped #}
H A Draw.rst11 {{ var|raw }} {# var won't be escaped #}
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Ddefined.rst28 {% if var is defined and foo.method(var) is defined %}
H A Deven.rst8 {{ var is even }}

1...<<11121314151617181920>>...25