Home
last modified time | relevance | path

Searched full:type (Results 1 – 25 of 613) sorted by relevance

12345678910>>...25

/dokuwiki/inc/Remote/OpenApiDoc/
H A DType.php5 class Type implements \Stringable class
31 * Return the base type
33 * This is the type this variable is. Eg. a string[] is an array.
71 * Return a primitive type understood by the XMLRPC server
82 * Get the base type as one of the supported OpenAPI types
103 * If this is an array, return the type of the array elements
105 * @return Type|null null if this is not a typed array
109 $type = $this->typehint;
110 if (!str_ends_with($type, '[]')) {
113 $type = substr($type, 0, -2);
[all …]
H A DDocBlockProperty.php7 /** @var Type */
8 protected $type; variable in dokuwiki\\Remote\\OpenApiDoc\\DocBlockProperty
24 * The Type of this property
26 * @return Type
30 return $this->type;
41 $this->type = new Type($refType ? $refType->getName() : 'string', $this->getContext());
46 [$type, $description] = array_map(trim(...), sexplode(' ', $this->tags['var'][0], 2, ''));
47 $this->type = new Type($type, $this->getContext());
H A DDocBlockMethod.php66 'type' => new Type($refType ? $refType->getName() : 'string', $this->getContext()),
77 [$type, $name, $description] = array_map(trim(...), sexplode(' ', $param, 3, ''));
82 $result[$name]['type'] = new Type($type, $this->getContext());
100 'type' => new Type($refType ? $refType->getName() : 'void', $this->getContext()),
106 [$type, $description] = array_map(trim(...), sexplode(' ', $return, 2, ''));
107 $result['type'] = new Type($type, $this->getContext());
H A DOpenAPIGenerator.php124 'type' => 'http',
128 'type' => 'http',
178 $retType = $call->getReturn()['type'];
204 'type' => 'object',
208 'type' => 'object',
212 'type' => 'integer',
217 'type' => 'string',
260 return ['schema' => ['type' => 'null']];
267 'type' => 'object',
274 $example = $this->generateExample($name, $info['type']->getOpenApiType());
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DRegistry.php11 use SimplePie\Content\Type\Sniffer;
107 * @param string $type See {@see $default} for names
112 public function register(string $type, $class, bool $legacy = false) argument
114 if (array_key_exists($type, $this->legacyTypes)) {
115 …ent #1 ($type) with value "%s" is deprecated since SimplePie 1.8.0, use class-string "%s" instead.…
117 $type = $this->legacyTypes[$type];
120 if (!array_key_exists($type, $this->default)) {
129 $base_class = $this->default[$type];
135 $this->classes[$type] = $class;
145 * Get the class registered for a type
[all …]
H A DRestriction.php31 * Type of restriction
36 public $type; variable in SimplePie\\Restriction
54 …public function __construct(?string $relationship = null, ?string $type = null, ?string $value = n… argument
57 $this->type = $type;
87 * Get the type
93 if ($this->type !== null) {
94 return $this->type;
H A DCache.php50 * @return Base Type of object depends on scheme of `$location`
54 $type = explode(':', $location, 2);
55 $type = $type[0];
56 if (!empty(self::$handlers[$type])) {
57 $class = self::$handlers[$type];
83 * @param string $type DSN type to register for
87 public static function register(string $type, $class) argument
89 self::$handlers[$type] = $class;
/dokuwiki/inc/Parsing/ParserMode/
H A DFormatting.php11 protected $type; variable in dokuwiki\\Parsing\\ParserMode\\Formatting
53 * @param string $type
55 public function __construct($type) argument
59 if (!array_key_exists($type, $this->formatting)) {
60 trigger_error('Invalid formatting type ' . $type, E_USER_WARNING);
63 $this->type = $type;
67 $key = array_search($type, $modes);
84 if ($mode == $this->type) {
89 $this->formatting[$this->type]['entry'],
91 $this->type
[all …]
/dokuwiki/_test/tests/Remote/OpenApiDoc/
H A DDocBlockMethodTest.php6 use dokuwiki\Remote\OpenApiDoc\Type; alias
40 'type' => 'string',
45 'type' => 'int',
50 'type' => 'string[]',
60 $this->assertInstanceOf(Type::class, $params['foo']['type']);
61 $this->assertInstanceOf(Type::class, $params['bar']['type']);
62 $this->assertInstanceOf(Type::class, $params['baz']['type']);
66 'type' => 'string',
73 $this->assertInstanceOf(Type::class, $return['type']);
H A DTypeTest.php5 use dokuwiki\Remote\OpenApiDoc\Type; alias
55 $type = new Type($typehint, $context);
56 $this->assertEquals($expectedJSONRPCType, $type->getJSONRPCType());
69 $type = new Type($typehint, $context);
70 $this->assertEquals($expectedXMLRPCType, $type->getXMLRPCType());
94 $type = new Type($typehint, $context);
96 $result = [$type->getJSONRPCType()];
97 while ($type = $type->getSubType()) {
98 $result[] = $type->getJSONRPCType();
/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.sql15 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
22 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
35 -- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres
47 -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
61 -- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
68 -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres
81 -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
95 -- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
102 -- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres
116 -- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/
H A DRSAPrivateKey.php27 'type' => ASN1::TYPE_SEQUENCE,
30 'type' => ASN1::TYPE_INTEGER,
33 'modulus' => ['type' => ASN1::TYPE_INTEGER], // n
34 'publicExponent' => ['type' => ASN1::TYPE_INTEGER], // e
35 'privateExponent' => ['type' => ASN1::TYPE_INTEGER], // d
36 'prime1' => ['type' => ASN1::TYPE_INTEGER], // p
37 'prime2' => ['type' => ASN1::TYPE_INTEGER], // q
38 'exponent1' => ['type' => ASN1::TYPE_INTEGER], // d mod (p-1)
39 'exponent2' => ['type' => ASN1::TYPE_INTEGER], // d mod (q-1)
40 'coefficient' => ['type' => ASN1::TYPE_INTEGER], // (inverse of q) mod p
H A DDSAPrivateKey.php26 'type' => ASN1::TYPE_SEQUENCE,
28 'version' => ['type' => ASN1::TYPE_INTEGER],
29 'p' => ['type' => ASN1::TYPE_INTEGER],
30 'q' => ['type' => ASN1::TYPE_INTEGER],
31 'g' => ['type' => ASN1::TYPE_INTEGER],
32 'y' => ['type' => ASN1::TYPE_INTEGER],
33 'x' => ['type' => ASN1::TYPE_INTEGER]
H A DDirectoryString.php26 'type' => ASN1::TYPE_CHOICE,
28 'teletexString' => ['type' => ASN1::TYPE_TELETEX_STRING],
29 'printableString' => ['type' => ASN1::TYPE_PRINTABLE_STRING],
30 'universalString' => ['type' => ASN1::TYPE_UNIVERSAL_STRING],
31 'utf8String' => ['type' => ASN1::TYPE_UTF8_STRING],
32 'bmpString' => ['type' => ASN1::TYPE_BMP_STRING]
H A DDisplayText.php26 'type' => ASN1::TYPE_CHOICE,
28 'ia5String' => ['type' => ASN1::TYPE_IA5_STRING],
29 'visibleString' => ['type' => ASN1::TYPE_VISIBLE_STRING],
30 'bmpString' => ['type' => ASN1::TYPE_BMP_STRING],
31 'utf8String' => ['type' => ASN1::TYPE_UTF8_STRING]
/dokuwiki/_test/
H A Dcomposer.lock13 "type": "git",
18 "type": "zip",
33 "type": "library",
73 "type": "git",
78 "type": "zip",
86 "type": "library",
121 "type": "custom"
125 "type": "github"
129 "type": "github"
133 "type": "tidelift"
[all …]
/dokuwiki/vendor/splitbrain/slika/
H A Dcomposer.lock14 "type": "git",
19 "type": "zip",
37 "type": "library",
67 "type": "custom"
71 "type": "patreon"
75 "type": "tidelift"
84 "type": "git",
89 "type": "zip",
107 "type": "library",
135 "type": "tidelift"
[all …]
/dokuwiki/inc/Remote/Response/
H A DLink.php7 /** @var string The type of this link: `internal`, `external` or `interwiki` */
8 public $type; variable in dokuwiki\\Remote\\Response\\Link
15 * @param string $type One of `internal`, `external` or `interwiki`
19 public function __construct($type, $page, $href) argument
21 $this->type = $type;
/dokuwiki/_test/tests/inc/search/
H A Dsearch.test.php7 foreach(array('id', 'type', 'level', 'open') as $k) {
39 'type' => 'd',
44 'type' => 'd',
49 'type' => 'f',
60 'type' => 'd',
66 'type' => 'd',
72 'type' => 'f',
78 'type' => 'f',
84 'type' => 'f',
90 'type' => 'd',
[all …]
/dokuwiki/vendor/composer/
H A Dinstalled.php7 'type' => 'project',
17 'type' => 'library',
26 'type' => 'project',
35 'type' => 'library',
47 'type' => 'library',
56 'type' => 'library',
65 'type' => 'library',
74 'type' => 'library',
83 'type' => 'library',
92 'type' => 'library',
[all …]
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A Dcomposer.lock14 "type": "git",
19 "type": "zip",
37 "type": "library",
67 "type": "custom"
71 "type": "patreon"
75 "type": "tidelift"
84 "type": "git",
89 "type": "zip",
106 "type": "library",
134 "type": "tidelift"
[all …]
/dokuwiki/vendor/simplepie/simplepie/utils/PHPStan/
H A DRegistryCallMethodReturnTypeExtension.php13 use PHPStan\Type\DynamicMethodReturnTypeExtension;
14 use PHPStan\Type\Type; alias
17 use PHPStan\Type\Constant\ConstantStringType;
18 use PHPStan\Type\Constant\ConstantArrayType;
19 use PHPStan\Type\ArrayType;
20 use PHPStan\Type\MixedType;
23 * Fixes return type for `Registry::call()` to match the called method.
45 …tTypeFromMethodCall(MethodReflection $methodReflection, MethodCall $methodCall, Scope $scope): Type
51 // Not enough arguments to determine the return type.
/dokuwiki/.github/ISSUE_TEMPLATE/
H A Dbug_report.yml5 - type: markdown
24 - type: textarea
41 - type: markdown
45 - type: input
52 - type: input
59 - type: input
64 - type: input
69 - type: textarea
80 - type: markdown
84 - type: markdown
[all …]
/dokuwiki/inc/Extension/
H A DPluginController.php35 * Returns a list of available plugins of given type
37 * @param $type string, plugin_type name;
38 * the type of plugin to return,
45 * - plugin names when $type = ''
46 * - or plugin component names when a $type is given
50 public function getList($type = '', $all = false) argument
54 if (!$type) {
58 if (!isset($this->listByType[$type]['enabled'])) {
59 $this->listByType[$type]['enabled'] = $this->getListByType($type, true);
61 if ($all && !isset($this->listByType[$type]['disabled'])) {
[all …]
/dokuwiki/inc/
H A Dtoolbar.php30 'type' => 'format',
39 'type' => 'format',
48 'type' => 'format',
57 'type' => 'format',
66 'type' => 'format',
75 'type' => 'autohead',
84 'type' => 'autohead',
93 'type' => 'autohead',
102 'type' => 'picker',
108 'type' => 'format',
[all …]

12345678910>>...25