-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNonGenericOptional.php
More file actions
49 lines (41 loc) · 979 Bytes
/
Copy pathNonGenericOptional.php
File metadata and controls
49 lines (41 loc) · 979 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
declare(strict_types=1);
namespace PetrKnap\Optional;
/**
* Provides type hints for non-generic {@see Optional}
*
* @phpstan-require-extends Optional
*/
trait NonGenericOptional
{
public static function empty(): self
{
/** @var self */
return parent::empty();
}
public static function of(mixed $value): self
{
/** @var self */
return parent::of($value);
}
public static function ofFalsable(mixed $value): self
{
/** @var self */
return parent::ofFalsable($value);
}
public static function ofNullable(mixed $value): self
{
/** @var self */
return parent::ofNullable($value);
}
public static function ofSingle(iterable $value): self
{
/** @var self */
return parent::ofSingle($value);
}
public function filter(callable $predicate): self
{
/** @var self */
return parent::filter($predicate);
}
}