-
Notifications
You must be signed in to change notification settings - Fork 440
small issue #4
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
Comments
I can fix this, but be aware that any branch of this repository will not be production. The eager_loading branch is in development right now so I wouldn't use it on a production site. When the feature is done and tested I will merge into master branch. |
murayama
referenced
this issue
in murayama/php-activerecord
Mar 6, 2013
find_or_initializeがなかったので実装しました
Closed
joshuan
pushed a commit
to Fabrica/php-activerecord
that referenced
this issue
May 23, 2014
Add memcache query caching (credit to @hpainter)
Rican7
pushed a commit
to Rican7/php-activerecord
that referenced
this issue
Jun 2, 2016
Chore: Docblock fixes
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Parse error: syntax error, unexpected ':' in /library/php-activerecord/lib/Table.php on line 192
resolve:
$attach_associations_from_eager = empty($models_for_eager_load) : false : true;
to
$attach_associations_from_eager = empty($models_for_eager_load) ? false : true;
The text was updated successfully, but these errors were encountered: