Re: [PHP-DEV] Deprecate ReflectionParameter::isArray() and friends

2020-02-25 Thread Nikita Popov
On Tue, Feb 25, 2020 at 8:12 PM Bishop Bettini wrote: > On Tue, Feb 25, 2020 at 10:33 AM Nikita Popov > wrote: > >> I've put up https://github.com/php/php-src/pull/5209 to deprecate the >> following reflection methods: >> >> * ReflectionParameter::isArray() >> * ReflectionParameter::isCallable

Re: [PHP-DEV] Deprecate ReflectionParameter::isArray() and friends

2020-02-25 Thread Bishop Bettini
On Tue, Feb 25, 2020 at 10:33 AM Nikita Popov wrote: > I've put up https://github.com/php/php-src/pull/5209 to deprecate the > following reflection methods: > > * ReflectionParameter::isArray() > * ReflectionParameter::isCallable() > * ReflectionParameter::getClass() > > These APIs have been s

[PHP-DEV] Deprecate ReflectionParameter::isArray() and friends

2020-02-25 Thread Nikita Popov
Hi internals, I've put up https://github.com/php/php-src/pull/5209 to deprecate the following reflection methods: * ReflectionParameter::isArray() * ReflectionParameter::isCallable() * ReflectionParameter::getClass() These APIs have been superseded by ReflectionParameter::getType() since PHP