-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathProvider.php
More file actions
33 lines (30 loc) · 843 Bytes
/
Provider.php
File metadata and controls
33 lines (30 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang\ServiceLoader;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `Provider` interface was auto generated.
*/
interface Provider
{
/**
* Returns an instance of the provider.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#get
* @NotImplemented
*/
// public function get($a = null)
/**
* Returns the provider type.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#type
* @NotImplemented
*/
// public function type($a = null)
}