Skip to content

Commit ae1517c

Browse files
committedApr 18, 2022
Update stubs
1 parent 73ee8a9 commit ae1517c

File tree

142 files changed

+4098
-939
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+4098
-939
lines changed
 

‎stubs/Zend/ArrayAccess.php

+13-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,25 @@
22

33
interface ArrayAccess
44
{
5-
/** @tentative-return-type */
5+
/**
6+
* @tentative-return-type
7+
* @return bool
8+
*/
69
public function offsetExists(mixed $offset);
710
/**
811
* Actually this should be return by ref but atm cannot be.
912
* @tentative-return-type
13+
* @return mixed
1014
*/
1115
public function offsetGet(mixed $offset);
12-
/** @tentative-return-type */
16+
/**
17+
* @tentative-return-type
18+
* @return void
19+
*/
1320
public function offsetSet(mixed $offset, mixed $value);
14-
/** @tentative-return-type */
21+
/**
22+
* @tentative-return-type
23+
* @return void
24+
*/
1525
public function offsetUnset(mixed $offset);
1626
}

‎stubs/Zend/Countable.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
interface Countable
44
{
5-
/** @tentative-return-type */
5+
/**
6+
* @tentative-return-type
7+
* @return int
8+
*/
69
public function count();
710
}

0 commit comments

Comments
 (0)
Please sign in to comment.