-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathget_group.php
42 lines (34 loc) · 836 Bytes
/
get_group.php
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
<?php
declare(strict_types=1);
namespace Psl\Filesystem;
use Psl;
use Psl\Str;
use function filegroup;
/**
* Get the group of $node.
*
* @param non-empty-string $node
*
* @throws Exception\NotFoundException If $node is not found.
* @throws Exception\RuntimeException In case of an error.
*/
function get_group(string $node): int
{
if (!namespace\exists($node)) {
throw Exception\NotFoundException::forNode($node);
}
[$result, $message] = Psl\Internal\box(
/**
* @return false|int
*/
static fn() => filegroup($node),
);
if (false === $result) {
throw new Exception\RuntimeException(Str\format(
'Failed to retrieve group of file "%s": %s',
$node,
$message ?? 'internal error',
));
}
return $result;
}