Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All subpackages need to have a readme #1

Closed
stof opened this issue Oct 22, 2015 · 1 comment
Closed

All subpackages need to have a readme #1

stof opened this issue Oct 22, 2015 · 1 comment

Comments

@stof
Copy link
Member

stof commented Oct 22, 2015

Otherwise, the subtree split repos provide a bad experience to people seeing them

@nicolas-grekas
Copy link
Member

PR welcomed :)

fabpot added a commit that referenced this issue Nov 4, 2015
This PR was squashed before being merged into the 1.0-dev branch (closes #12).

Discussion
----------

Initial subtree split READMEs

See #1

Commits
-------

c03f0be Initial subtree split READMEs
@fabpot fabpot closed this as completed Nov 4, 2015
nicolas-grekas added a commit that referenced this issue May 12, 2020
This PR was squashed before being merged into the 1.16-dev branch.

Discussion
----------

[PHP 8.0] add `get_resource_id` function

Resolves #259

PHP 8.0 output for reference:
```
php > $res = fopen('test', 'w');
php > var_dump((int) $res, get_resource_id($res));
int(2)
int(2)
php > fclose($res);
php > var_dump((int) $res, get_resource_id($res));
int(2)
int(2)
php > $res = 10;
php > var_dump((int) $res, get_resource_id($res));
PHP Warning:  Uncaught TypeError: get_resource_id(): Argument #1 ($res) must be of type resource, int given in php shell code:1
Stack trace:
#0 php shell code(1): get_resource_id(10)
#1 {main}
  thrown in php shell code on line 1

Warning: Uncaught TypeError: get_resource_id(): Argument #1 ($res) must be of type resource, int given in php shell code:1
Stack trace:
#0 php shell code(1): get_resource_id(10)
#1 {main}
  thrown in php shell code on line 1
```

Commits
-------

ba2ec37 [PHP 8.0] add `get_resource_id` function
simPod added a commit to simPod/polyfill-1 that referenced this issue Nov 30, 2021
> Deprecated: strpos(): Passing null to parameter symfony#1 ($haystack) of type string is deprecated
simPod added a commit to simPod/polyfill-1 that referenced this issue Nov 30, 2021
> Deprecated: strpos(): Passing null to parameter symfony#1 ($haystack) of type string is deprecated
derrabus added a commit that referenced this issue Nov 30, 2021
This PR was merged into the 1.23-dev branch.

Discussion
----------

Passing null to strpos() throws deprecation on PHP 8.1

> Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated

Commits
-------

7a15b61 Passing null to strpos() throws deprecation on PHP 8.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants