Re: [PHP-DEV] [RFC idea introduce] The issue where the __callStatic magic method is not called when statically calling a public method.

2024-03-28 Thread 하늘아부지
2024년 3월 28일 (목) 오후 6:33, Stéphane Hulard 님이 작성: > Le jeudi 28 mars 2024 à 10:40, Claude Pache a > écrit : > > > > > > > > > > Le 28 mars 2024 à 03:29, 하늘아부지 a écrit : > > > > > > > > > > > Hi. > > > > > > > I would like to register an RFC on the following issue. > > >

Re: [PHP-DEV] [RFC idea introduce] The issue where the __callStatic magic method is not called when statically calling a public method.

2024-03-28 Thread Stéphane Hulard
Le jeudi 28 mars 2024 à 10:40, Claude Pache a écrit : > > > > Le 28 mars 2024 à 03:29, 하늘아부지 a écrit : > > > > > > Hi. > > > > I would like to register an RFC on the following issue. > > https://github.com/php/php-src/issues/13813 > > > > To summarize briefly, users expect that the

Re: [PHP-DEV] [RFC idea introduce] The issue where the __callStatic magic method is not called when statically calling a public method.

2024-03-28 Thread Claude Pache
> Le 28 mars 2024 à 03:29, 하늘아부지 a écrit : > > Hi. > > I would like to register an RFC on the following issue. > https://github.com/php/php-src/issues/13813 > > To summarize briefly, users expect that the `__callStatic` magic method will > be called in all cases when a method is not static

[PHP-DEV] [RFC idea introduce] The issue where the __callStatic magic method is not called when statically calling a public method.

2024-03-27 Thread 하늘아부지
Hi. I would like to register an RFC on the following issue. https://github.com/php/php-src/issues/13813 To summarize briefly, users expect that the `__callStatic` magic method will be called in all cases when a method is not static while using the `__callStatic`. However, in reality, if the