This repository was archived by the owner on Jul 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfunctions.php
More file actions
126 lines (113 loc) · 1.84 KB
/
functions.php
File metadata and controls
126 lines (113 loc) · 1.84 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php declare(strict_types=1);
/*
* This file is part of the pinepain/php-ref PHP extension.
*
* Copyright (c) 2016-2018 Bogdan Padalko <pinepain@gmail.com>
*
* Licensed under the MIT license: http://opensource.org/licenses/MIT
*
* For the full copyright and license information, please view the
* LICENSE file that was distributed with this source or visit
* http://opensource.org/licenses/MIT
*/
namespace Ref;
/**
* Check whether value is refcounted
*
* @param mixed $value
*
* @return bool
*/
function refcounted(mixed $value): bool
{
}
/**
* Get real object references count (not counting value reference passed as a function argument)
*
* @param object $object
*
* @return int
*/
function refcount(object $object): int
{
}
/**
* Check whether object has soft references
*
* @param object $value
*
* @return bool
*/
function softrefcounted(object $value): bool
{
}
/**
* Get object's soft references count
*
* @param object $value
*
* @return int
*/
function softrefcount(object $value): int
{
}
/**
* Get object's soft references
*
* @param object $value
*
* @return mixed
*/
function softrefs(object $value): array
{
}
/**
* Check whether object has weak references
*
* @param object $value
*
* @return bool
*/
function weakrefcounted(object $value): bool
{
}
/**
* Get object's weak references count
*
* @param object $value
*
* @return int
*/
function weakrefcount(object $value): int
{
}
/**
* Get object's weak references
*
* @param object $value
*
* @return mixed
*/
function weakrefs(object $value): array
{
}
/**
* Get object's handle id
*
* @param object $value
*
* @return int
*/
function object_handle(object $value): int
{
}
/**
* Check whether object's destructor was called
*
* @param object $value
*
* @return bool
*/
function is_obj_destructor_called(object $value): bool
{
}