-
Notifications
You must be signed in to change notification settings - Fork 132
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
String casting improvements #361
Conversation
kukulich
commented
Sep 8, 2017
- Improves compatibility with internal reflection: ReflectionClass::export incompatibilities #144
- Cleans string casting: Improve __toString() functionality internally #94
protected $code; | ||
protected $file; | ||
protected $line; | ||
private $trace; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice findings :P
iterable $iterable, | ||
object $object | ||
) | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CS went a bit bananas here, but not really important.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks incredibly good!
I like that all these __toString()
are now split out: easier to drop them later on.
Kids: don't use __toString()
information ;-)
Thanks @kukulich! |