Terje Bråten
Terje Bråten
Please, can we have this pull request? It is a very useful feature I also want.
Is there any progress on adding the "isDisabled" method. (I was needing it today.)
Why does this depend on #499 ? As you have driver dependent implementations of "isChecked" you should probably have driver dependent implementations of "isDisabled". I see #499 as just an...
@stof said in https://github.com/minkphp/Mink/issues/521#issuecomment-42497277 "I would not add getNodeProperty". I understood that to mean that "isDisabled" still could go ahead.
What about `Doctrine\Common\Util\ClassUtils::getRealClass(string $class)` ? Where is that function going to live? Or what is the replacement?
@Ocramius You said "If you want, you can make ClassUtils::getRealClass() proxy through to the new API in 3.x, and then we can drop it in 4.x." Does that mean making...
"is deprecated" and "remove the warning" sounds like an oxymoron to me. But as long as we agree that the deprecation warning should go in 2.x, I guess we are...
`Doctrine\Common\Util\ClassUtils` starts with ``` /** * Class and reflection related functionality for objects that * might or not be proxy objects at the moment. * * @author Benjamin Eberlei *...
As I said, the annotation has effects in my programming environment. When I see something marked as deprecated, I always want to replace it. But it does not make sense...
So, my original problem is that I have an object that may or may not be a proxy. First we tried `get_class($object)` but that failed when the object was proxy...