-
Notifications
You must be signed in to change notification settings - Fork 14
Fix for #55 #56
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
Fix for #55 #56
Conversation
…at capitalization for attribute names are retained. So the short form for New York is now NY instead of ny. test/model/Author, Book, and Venue now have those strtoupper() workarounds in getter/setter methods removed as it's done in Model.php
…rcased in Model.php in order to be case insensitive.
…at capitalization for attribute names are retained. So the short form for New York is now NY instead of ny. test/model/Author, Book, and Venue now have those strtoupper() workarounds in getter/setter methods removed as it's done in Model.php
…rcased in Model.php in order to be case insensitive.
# Conflicts: # lib/Model.php
…cord # Conflicts: # test/ActiveRecordTest.php # test/models/Book.php
…Disable it so that regression does not timeout.
…d#35: Authors table now has a column that is camel cased: firstName Added tests that demonstrate case insensitivity when accessing this firstName column
- Correct link to contributing.md
…vity() is enough.
…cord # Conflicts: # composer.json # scripts/TestCommand.php
|
Ah, crap, I didn't notice the warnings in 8.2. I guess we'll have to see if we can figure out how to promote warnings to errors so this doesn't keep happening... |
|
I set this flag in my php.ini file: error_reporting = E_ALL & ~E_NOTICE perhaps error_reporting = E_ALL makes more sense if we want a really clean test output |
|
Well, in this case the problem isn't that warnings aren't being raised, but that the tests pass even when they do. |
Looks like a small regression failure introduced in the last merge to master. Fixed.