Home
last modified time | relevance | path

Searched refs:arg (Results 1 – 10 of 10) sorted by last modified time

/dokuwiki/inc/
H A Dinfoutils.php547 foreach ($call['args'] as $arg) {
548 if (is_object($arg)) {
549 $params[] = '[Object ' . get_class($arg) . ']';
550 } elseif (is_array($arg)) {
552 } elseif (is_null($arg)) {
555 $params[] = '"' . $arg . '"';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php2254 foreach ($args as $arg) {
2256 case $arg instanceof PublicKey:
2258 case $arg instanceof PrivateKey:
2259 case $arg instanceof Agent:
2260 case is_array($arg):
2261 case Strings::is_stringable($arg):
2277 foreach ($args as $key => $arg) {
2278 if ($arg instanceof PrivateKey || $arg instanceof Agent) {
2279 $newargs[] = $arg;
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Request/
H A DRequest.php30 foreach ($this->args as $arg) {
32 $v = new Value($arg);
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DIntrospectionServer.php86 $arg = array_shift($args);
91 if (is_array($arg) || !is_int($arg)) {
97 if (!is_string($arg)) {
102 if ($arg !== false && $arg !== true) {
108 if (!is_float($arg)) {
114 if (!($arg instanceof Date)) {
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php3151 foreach ($urls as $arg) {
3152 if ($arg instanceof SimplePie) {
3153 $items = array_merge($items, $arg->get_items(0, $limit));
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/bin/
H A Dgittool.php172 * @param $arg
174 public function cmdGit($cmd, $arg) argument
178 $shell = array_merge(['git', $cmd], $arg);
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php109 * @param string $arg argument name (just for help)
115 public function registerArgument($arg, $help, $required = true, $command = '') argument
122 'name' => $arg,
196 foreach ($this->setup[$this->command]['args'] as $arg) {
197 if (!$arg['required']) {
227 $arg = $this->args[$i];
231 if ($arg == '--') {
237 if ($arg == '-') {
243 if ($arg[0] != '-') {
249 if (strlen($arg) >
[all...]
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG311 * Fixed missed shorthand arg references in Bash (BenBE)